Img4Dat - Printable Version +- LDraw.org Discussion Forums (https://forums.ldraw.org) +-- Forum: LDraw Programs (https://forums.ldraw.org/forum-7.html) +--- Forum: Parts Author Tools (https://forums.ldraw.org/forum-24.html) +--- Thread: Img4Dat (/thread-23242.html) Pages:
1
2
|
Img4Dat - Rolf Osterthun - 2019-02-26 Hello, long time ago I started implementing a tool to convert images to LDraw compatible .dat files. The first name was Img2Dat; but during the time the ‘version’ increased. Here is only a short description. You can download the tool here (sorry, but I have to write this: the application, can be downloaded as it is. I do not take charge for errors or any kind of damage to your system that is caused by this software.): Img4Dat.zip It is a beta version – there are some issues I that need an improvement. But I think it is stable enough for playing. It is written in C# for the .NET Framework 3.5 (so Windows). If you open the application, you can open a bitmap (currently only .bmp) – it will be shown in the left half of the GUI. Clipboard01.png (Size: 144.44 KB / Downloads: 868) Now you can choose colors for the color quantization by right click on the source image (select the background color first). The result will be shown in the right half of the GUI. It is the base for the path findings (around the areas with the same color). After choosing the colors it is possible to clean the result a little bit (and to remove the obsolete areas in the background). Clipboard02.png (Size: 204.78 KB / Downloads: 868) You can save the result image to rework it in a different tool or just for backup. You can search for the paths now, by clicking the 'FindPaths' button. The result will be shown on top of the original image. Again, a little bit of cleaning can be done (here undo is possible):
Clipboard03.png (Size: 190.53 KB / Downloads: 865) You can also add a ‘template’ where the image should be patterned for, and scale and adjust it (currently only torso and tile 2x2 round). Clipboard04.png (Size: 196.46 KB / Downloads: 864) When the result is fine, the triangles can be created by clicking the 'CreateTriangles' button – a .dat file with the name of the source image becomes created in the folder of the source image. The colors need to be adjusted to LDraw colors. Clipboard05.png (Size: 4.13 KB / Downloads: 852) (One hint: The triangle generation will not work correct, when two lines cross after cleaning the paths or adding the template.) I would be happy, if someone gives it a try. Rolf RE: Img4Dat - Philippe Hurbain - 2019-02-27 Had a quick try on my laptop (not home currently) and so far I'm not very successfull... get a crash whan I try to generate triangles, or when I try to save bitmap. I'll try again when home! Attached the bitmap I used. RE: Img4Dat - Rolf Osterthun - 2019-02-27 (2019-02-27, 16:02)Philippe Hurbain Wrote: Had a quick try on my laptop (not home currently) and so far I'm not very successfull... get a crash whan I try to generate triangles, or when I try to save bitmap. I'll try again when home! Ok, did you get an error message? I was able to create the file (without path cleaning). But as you can see here, there is still some work to do... There are red colored triangles, that needs to be adjusted (and one wrong blue ). Clipboard06.png (Size: 9.9 KB / Downloads: 826) Rolf RE: Img4Dat - Philippe Hurbain - 2019-03-03 (2019-02-27, 16:44)Rolf Osterthun Wrote: Ok, did you get an error message? Tried again on my main machine, same problem when I try to triangulate. Here is the error message: Code: Consultez la fin de ce message pour plus de détails sur l'appel du débogage And the questions/wishes... - how do I fit the image to the template? - I can delete one single vertex from a path. I wish I could select several with a marquee and delete them all. RE: Img4Dat - Rolf Osterthun - 2019-03-03 (2019-03-03, 9:17)Philippe Hurbain Wrote: And the questions/wishes... Hello Philo, you have to fit the template to the image. By using the 4 NumerUpDown fields in the left bottom area, you can scale and move the template. It works the easiest if you select the field and use the mouse wheel. And I think that this is also the reason for the exception. You added a template, but did not move it, so that there are negative values in the 'template path'. Currently the application can not handle such situations. I will catch them in the next version. So now, you either can move and scale the template or you can create the triangles without a template (but then the size will not match the needed one). Does this help? I will try to add the 'multi-delete'. Rolf RE: Img4Dat - Rolf Osterthun - 2019-03-04 Hello, there is a new version available now (same location). In that, you can also delete 'multi-selects' by pressing 'd'. Rolf RE: Img4Dat - Philippe Hurbain - 2019-03-05 (2019-03-04, 21:36)Rolf Osterthun Wrote: Hello,Thanks Rolf, I was able to adjust template, and multi-delete works fine. But I still get an instant crash when I try to triangulate (with or without template ) RE: Img4Dat - Rolf Osterthun - 2019-03-05 (2019-03-05, 9:07)Philippe Hurbain Wrote: Thanks Rolf, I was able to adjust template, and multi-delete works fine. But I still get an instant crash when I try to triangulate (with or without template ) Hello Philo, thank you for testing and reporting. I am really sorry, that it is not working on your side. I uploaded a new version. This time a few debug messages were added (via log4net). That means the application will create a log.txt file where you can see, what it is doing – and where it is stopping. A few posts up you wrote, that you were also not able to save the bitmap. Could it be that the application is not allowed to create files on your system? Rolf RE: Img4Dat - Philippe Hurbain - 2019-03-05 (2019-03-05, 10:57)Rolf Osterthun Wrote: thank you for testing and reporting. I am really sorry, that it is not working on your side.So am I Quote:I uploaded a new version. This time a few debug messages were added (via log4net). That means the application will create a log.txt file where you can see, what it is doing – and where it is stopping.Attached two log files (with different source images). About the same result (and crash in both cases). Quote:A few posts up you wrote, that you were also not able to save the bitmap. Could it be that the application is not allowed to create files on your system?That was on my laptop (and there I only tried once, maybe I goofed). Here it works fine, as you see in a log file (I used the continue possibility after triangulation crash). RE: Img4Dat - Rolf Osterthun - 2019-03-05 (2019-03-05, 11:55)Philippe Hurbain Wrote: So am I Thanks again. In both cases the application tried to add a point directly on the edge of the image (x coordinate = 0). This is something I did not expect / did not test deep enough. I expected that the pattern is always surrounded by the back color (at least after cleaning the quantized image). A new version is uploaded that should be able to handle these situations. I hope it works now. Rolf RE: Img4Dat - Philippe Hurbain - 2019-03-05 (2019-03-05, 12:49)Rolf Osterthun Wrote: I hope it works now.Good news! It does work And I know what I did to crash at bitmap save: I tried to overwrite currently opened bitmap with edited one... More after I make some more tests... RE: Img4Dat - Philippe Hurbain - 2019-03-05 (2019-03-05, 13:40)Philippe Hurbain Wrote: More after I make some more tests...http://www.ldraw.org/cgi-bin/ptdetail.cgi?f=parts/973p9e.dat Is it necessary to say more? More seriously... I found the cleanup time to be somewhat painful (eg. I missed a "merge points to average" function). So I used another method: first recreate a clean image with a vector drawing program (here Corel Draw X5), exported as bmp, processed with Img4Dat. Almost done... just had to change colors to proper LDraw ones, correct a colinear triangle, place the torso faces at the right place. Great stuff! RE: Img4Dat - Philippe Hurbain - 2019-03-05 ...and another one... http://www.ldraw.org/cgi-bin/ptdetail.cgi?f=parts/973p5e.dat I already had the vector image, so it was a snap! One thing I'd like: be able to unzoom more than 1x (if the image is big, I can't unzoom enough to see it completely and adjust template) RE: Img4Dat - Rolf Osterthun - 2019-03-05 (2019-03-05, 15:54)Philippe Hurbain Wrote: http://www.ldraw.org/cgi-bin/ptdetail.cgi?f=parts/973p9e.dat Hey, looks good. Can you share the exported bmp with me? I would like to reproduce the colinear triangle. Did you try to replace the circles (select one point in a standalone circle and push createCircle)? Thanks Rolf RE: Img4Dat - Philippe Hurbain - 2019-03-06 (2019-03-05, 19:13)Rolf Osterthun Wrote: looks good. Can you share the exported bmp with me? I would like to reproduce the colinear triangle.Here attached... happens with a torso template, scaled 20x20. This is somewhat expected, considering the number of triangles to squeeze at the bottom of torso. Other than adding another vertex in the middle of base, solution is to made a minor tweak to the pattern (that's what I did). Quote:Did you try to replace the circles (select one point in a standalone circle and push createCircle)?I did. But the result was already pretty good, I figured it was not worth the work... Otherwise... - if the template goes outside the image, there is a crash. - I would have expected the pattern to be cropped along the lines of template? RE: Img4Dat - Philippe Hurbain - 2019-03-06 Really impressed by Img4dat... I made this one http://www.ldraw.org/cgi-bin/ptdetail.cgi?f=parts/973p5f.dat that would have been a nightmare to do "by hand". This one was made directly from images captured from this video https://youtu.be/UxzW2u_0m-g?t=96, just with enhanced contrast and stuff outside torso trimmed with image editor. RE: Img4Dat - Rolf Osterthun - 2019-03-06 (2019-03-06, 12:41)Philippe Hurbain Wrote: I did. But the result was already pretty good, I figured it was not worth the work...Here I am always struggling – how good / detailed does the pattern has to be. (2019-03-06, 12:41)Philippe Hurbain Wrote: Otherwise...The triangle generation will not work correct, when two lines cross after cleaning the paths or adding the template. This includes the edges of the image. There are a lot of improvements that can be done... I started experimenting with a merge function (like you suggested) and storing the edited paths should become possible. In the meantime, I used the tool myself to create also a patterned torso: Brainiac Rolf RE: Img4Dat - Philippe Hurbain - 2019-03-09 (2019-03-05, 19:13)Rolf Osterthun Wrote: Did you try to replace the circles (select one point in a standalone circle and push createCircle)?Played a bit more with that... I think it would be better if the points were evenly distributed by this tool. Loosely related: - it would be nice to be able to select a full path (click on a point then extend selection to the whole path). Eg. to select one of concentric circles to apply createCircle - With a full path selected as above, I'd like to be able to decrease the number of points (the points that cause smallest angle change beeing deleted first) RE: Img4Dat - Rolf Osterthun - 2019-03-09 (2019-03-09, 8:27)Philippe Hurbain Wrote: Played a bit more with that... I think it would be better if the points were evenly distributed by this tool. Currently you have the following possibilities: Select one point in a standalone circle (this means there is no point with more than two connected edges in the circle; pic 1). Circle1.PNG (Size: 27.94 KB / Downloads: 692) If you now use the CreateCircle Button, the application will replace the standalone circle with a better circle – same angle between all points (pic 2). When you change the value in the text field next to the CreateCircle button and use the button then, the number of points in the circle can be changed (e.g. 16 or 6; pic 3 and 4). When there is a not closed circle, you have to select all points you would like to optimize in the right order (pic5). Circle2.PNG (Size: 22.25 KB / Downloads: 691) Then you could either make the angle the same between the points by using the CreateCircle button (pic 6) or you can project them on the circle with the PutPointsOnCircle button (pic 7). In the second option the angles did not change, but they all have the same distance to a center point now. In both cases the first and the last point will not change its position. The second option is better for a situation like here: Circle3.PNG (Size: 27.64 KB / Downloads: 691) I hope this helps and your situations are covered? Rolf RE: Img4Dat - Philippe Hurbain - 2019-03-09 (2019-03-09, 14:07)Rolf Osterthun Wrote: If you now use the CreateCircle Button, the application will replace the standalone circle with a better circle – same angle between all points (pic 2).Ah, I missed that! thanks! RE: Img4Dat - Philippe Hurbain - 2019-03-10 (2019-02-26, 23:11)Rolf Osterthun Wrote: You can also add a ‘template’ where the image should be patterned for, and scale and adjust it (currently only torso and tile 2x2 round).Hi Rolf, Just noticed a little bug in torso template: top corner vertices are at x=+/-14.35, should be 14.345 to fit torso structure. Stupid me... not a template bug but agressive rounding on my side!!! RE: Img4Dat - Rolf Osterthun - 2019-03-21 Hey, A new version is uploaded: Img4Dat.zip You can use your own templates now. Create a LDraw shape in x-y-plane (z-coordinates will be ignored) that only is made from triangles that are BFCd counter clock wise). E.g. Minifig Torso: Code: 3 16 -19 32 -10 19 32 -10 19 29 -10 The result should also be ok now, when the template is bigger than the image. It is possible to merge selected points. It is possible to define the color codes for the resulting triangles. ColorDef.png (Size: 2.4 KB / Downloads: 631) Rolf RE: Img4Dat - Philippe Hurbain - 2019-03-22 Awesome! Made just a quick test, like it so far! Quote:The result should also be ok now, when the template is bigger than the image.I guess you mean the opposite (pathes that go outside template and are clipped on template boundaries) With this feature, it's now almost easy to create a 3D pattern, by creating two opposite checkerboard templates, create both triangulations and merge them, then cleanup (some triangles next to seams don't receive the right color) and make the projection. Two little things that would help a lot for that: - when loading a new template, keep scale and position of previous one. - Offer the possibility to name the output file to avoid unwanted overwrite. Quote:It is possible to define the color codes for the resulting triangles.Took me a while to find how: just key in ldraw color code in the color swatch boxes! RE: Img4Dat - Rolf Osterthun - 2019-03-22 (2019-03-06, 12:41)Philippe Hurbain Wrote: Otherwise... (2019-03-22, 8:54)Philippe Hurbain Wrote: I guess you mean the opposite (pathes that go outside template and are clipped on template boundaries)No, I meant that the template can become bigger now than the image. In the last version this guided to a crash. But you are partly right: the other function is also implemented very rudimentary. There are still some issues, so I did not mention it as new feature. E.g. when a pattern point is exactly at a template point, or when a path-edge is going completely through the pattern, or … some special cases. Most of the time the result will only contain a few wrong colored triangles, but sometimes it also contains wrong triangles. (2019-03-22, 8:54)Philippe Hurbain Wrote: With this feature, it's now almost easy to create a 3D pattern, by creating two opposite checkerboard templates, create both triangulations and merge them, then cleanup (some triangles next to seams don't receive the right color) and make the projection. Two little things that would help a lot for that:In a future version, it should be possible to define ‘hard’ edges in the template. These will split the result into smaller areas. I think the creation of 3d patterns will be a little bit more comfortable then. But to name the output file would be a good improvement in any case. (2019-03-22, 8:54)Philippe Hurbain Wrote: Took me a while to find how: just key in ldraw color code in the color swatch boxes!Sorry, bad description from my side. Rolf RE: Img4Dat - Philippe Hurbain - 2019-03-22 (2019-03-22, 10:17)Rolf Osterthun Wrote: In a future version, it should be possible to define ‘hard’ edges in the template. These will split the result into smaller areasEager to see that RE: Img4Dat - Philippe Hurbain - 2019-03-22 I made this head using checkerboard method (actually a 3 colors checkerboard!). It works fine, but requires too much cleaning to be cost effective compared to manual pattern creation... http://www.ldraw.org/cgi-bin/ptdetail.cgi?f=parts/47206p02.dat RE: Img4Dat - Philippe Hurbain - 2019-03-24 Three little gripes... - Since templates are essentially LDraw parts files, it's annoying (mildly) to have a txt extension. I'd prefer a .dat extension, allowing to use standard parts editors without having to override extension. - the displacement of template seems clipped to 1000, wich prevents to use large images. - Img4Dat doesn't unlock a loaded image file, even if you load another image. You have to quit Img4Dat to unlock it. RE: Img4Dat - Rolf Osterthun - 2019-03-28 (2019-03-24, 15:32)Philippe Hurbain Wrote: Three little gripes... Hey, all three points should be changed/fixed in this new version. Rolf RE: Img4Dat - Philippe Hurbain - 2019-03-29 (2019-03-28, 21:25)Rolf Osterthun Wrote: Hey, Thanks Rolf, I'll test it ASAP! RE: Img4Dat - Johann Eisner - 2019-04-06 (2019-03-28, 21:25)Rolf Osterthun Wrote: Hey, When i want to open a template, I got this error: Any idea? RE: Img4Dat - Rolf Osterthun - 2019-04-06 (2019-04-06, 19:01)Johann Eisner Wrote: When i want to open a template, I got this error: Hey, when you open a template, the tool tries to center it on the image that should be converted. But I think you did not open an image - so it is not possible to center the tempalte. I should catch that exception. Rolf RE: Img4Dat - Johann Eisner - 2019-04-07 (2019-04-06, 21:09)Rolf Osterthun Wrote: Hey, Hello Rolf That's the solution to the problem. I am used to it from the LDPC, first the template and then the picture to open. Johann RE: Img4Dat - Gerald Lasser - 2019-06-25 Rolf, I have to admit I was only lurking over this thread here and looking for Philo's experiements. After seeing the result of the post-it, i decided to try it for myself. I scanned a torso, enhanced the contrast and did a posterize in GIMP. Imported it into Img4Dat, just did minor brush up, et voila: Wow! Done in less than 10 minutes... (minor correction needed at the bottom) RE: Img4Dat - Gerald Lasser - 2019-06-26 Rolf, after using it and playing around more I do have some more requests/suggestions:
RE: Img4Dat - Rolf Osterthun - 2019-06-27 Hello Gerald, the torso looks really good. I am happy to see that you are experimenting with the tool. From my point of view the postproduction is not good enough yet. For chaotic patters it is good, but for well-arranged curves and lines it is not. (2019-06-26, 20:55)Gerald Lasser Wrote: Rolf, after using it and playing around more I do have some more requests/suggestions: CheckBoxFixed.PNG (Size: 3.92 KB / Downloads: 480) Even when it is not usefull from my point of view, I added a checkbox where you can set the colors as fixed. When the colors are not fixed a right click on a color button should also remove the color from the quantization now. (2019-06-26, 20:55)Gerald Lasser Wrote:These should be fixed. (2019-06-26, 20:55)Gerald Lasser Wrote:For small pictures it is working, but for larger pictures it is to slow. Maybe I will find a way to speed this up in a later version. Currently my workflow looks like this: Use img4dat for quantization. Save the bitmap. Use Paint for color corrections. Reopen in img4dat and search the paths... (2019-06-26, 20:55)Gerald Lasser Wrote:Yeah - that would be nice. Later... In the new version there are also minor additions:
A lot of refactoring was done - I hope it still works. Rolf RE: Img4Dat - Gerald Lasser - 2019-06-28 Thanks a lot Rolf for the quick adaptations! Tried it already and like the "Fix it" Button! :-) RE: Img4Dat - Rolf Osterthun - 2019-07-04 Hey, there was a bug in the triangulation. I uploaded a new version. Rolf RE: Img4Dat - Vincent Messenet - 2019-07-28 I finally gave it a try to produce the following part: https://www.ldraw.org/cgi-bin/ptdetail.cgi?f=parts/87079px0.dat I must tell this is a great tool because without it that part would have been a nightmare to create. It was done very fast I only had to rescale it with LDPE because there was no template for 2 X 4 Tile and then do some cleaning and that's all. Here are some suggestions for improvement: - Would be great to directly select the final ldraw color - A way to cancel color selection or at least remove one applied color - Support of png format (nice to have as converting to bmp is very easy) That's all I think for now. Thanks a lot for that great tool! RE: Img4Dat - Gerald Lasser - 2019-07-28 (2019-07-28, 12:03)Vincent Messenet Wrote: I finally gave it a try to produce the following part: This is true the tool is really beautiful for such kind of part. I played aslo with this pattern! (2019-07-28, 12:03)Vincent Messenet Wrote: Here are some suggestions for improvement: Two of your request Rolf realized already:
RE: Img4Dat - Philippe Hurbain - 2019-07-28 (2019-07-28, 12:03)Vincent Messenet Wrote: I finally gave it a try to produce the following part:Clearly the kind of part for which Img4Dat makes wonder... Quote:I must tell this is a great tool because without it that part would have been a nightmare to create. It was done very fast I only had to rescale it with LDPE because there was no template for 2 X 4 Tile and then do some cleaning and that's all.Note that it's not very difficult to create new templates like this one, look in templates subfolder. Quote:- Would be great to directly select the final ldraw colorYou may key in a LDraw color number in right pane palette. Of course a selection from a LDraw palette would be much more convenient Quote:- A way to cancel color selection or at least remove one applied colorRight click in color palette (the colors must not be fixed, see check box above palette) Quote:- Support of png format (nice to have as converting to bmp is very easy)jpg would be nice too, even though compression artifacts can be annoying, it's often the only available initial format... RE: Img4Dat - Vincent Messenet - 2019-07-28 Thanks for the hints Philippe! Just did another one very fast: https://www.ldraw.org/cgi-bin/ptdetail.cgi?f=parts/6179px0.dat RE: Img4Dat - Philippe Hurbain - 2019-12-04 Hi Rolf, I made a bunch of new patterns using img4dat... it really makes wonders if you have good source images! ...And of course some new wishes - Possibility to have a more continuous zoom factor, and to control it using mouse wheel - Possibility to save "projects" (template+template scale+template position). Useful if you have several similar patterns to do (low priority request!) - Possibility to control resolution of pathes. Overall the tool has a good balance, but sometimes if falls a bit on the low-res side. - ...and maybe some day team up with Nils to merge LDPC and Img4Dat? RE: Img4Dat - Johann Eisner - 2019-12-08 (2019-12-04, 14:21)Philippe Hurbain Wrote: - ...and maybe some day team up with Nils to merge LDPC and Img4Dat? As an avid LDPC user, I think that's a very good idea. RE: Img4Dat - Nils Schmidt - 2019-12-09 (2019-12-04, 14:21)Philippe Hurbain Wrote: ...and maybe some day team up with Nils to merge LDPC and Img4Dat? I am very aware of this requirement, but I estimate that the total effort will be around 200-250 hours of freetime work. I also need a better understanding of the process and how to provide a solution which is actually easy to use. RE: Img4Dat - Rolf Osterthun - 2019-12-11 Hello Philo, it is good to see that someone is using the tool. At the beginning I was no friend of scaling the image by non-integer values; but since I changed the generation of the quantized images it is no longer an issue. But I can not tell you all the effects on such a change (fill, paint, …). In the latest version the zoom in- and decreases by 0.1. But it will still no go below 1. Using the mouse wheel should work. To implement the ‘projects’ will take a little bit of time. I have to think about that. One possibility is to put the scale and position into the template files themselves. If you need different settings, you could create different templates. It would be possible to increase the resolution of the path. But that would affect all paths. I can try to implement a slider, where you can set this value. Currently it is set to 1, what means that the max distance between interpolated path segment and found path (edges of the colored areas) needs to be less than 1. A new version is uploaded. You can use the mouse for zooming now. It is also possible to correct one paint failure (a one step undo via Control+U). There is a new button in the color area; it can be used to force a re-quantization in the selected area (like fill); I will post an example later. And I tried to add a function that replaces paths by Bezier curves (sometime the results are a little bit strange; configurabel parameters again...; undo is possible via Control+Z). It is (and was) possible to open other kinds of images. In the Open Bitmap dialog you can select Filetype '*.*' and select other image files then. More to come... when there is more freetime. Rolf RE: Img4Dat - Philippe Hurbain - 2019-12-12 Quote:At the beginning I was no friend of scaling the image by non-integer values; but since I changed the generation of the quantized images it is no longer an issue. But I can not tell you all the effects on such a change (fill, paint, …). In the latest version the zoom in- and decreases by 0.1. But it will still no go below 1.Thanks, works fine! (sorry for the extra work ) Quote:Using the mouse wheel should work.could it be possible to place zoom center on mouse cursor? Quote:To implement the ‘projects’ will take a little bit of time. I have to think about that. One possibility is to put the scale and position into the template files themselves. If you need different settings, you could create different templates.That would be great. It would be at least a good starting point, and could be calibrated for an average image (say 500x500) Quote:It is (and was) possible to open other kinds of images.Sorry I missed that. Maybe it shouldn't default to the outdated BMP format... Quote:I will post an example laterWill be appreciated... remains a bit mysterious to me Quote:More to come... when there is more freetime.Take your time! thanks for your hard work! RE: Img4Dat - Rolf Osterthun - 2019-12-19 (2019-12-11, 23:11)Rolf Osterthun Wrote: There is a new button in the color area; it can be used to force a re-quantization in the selected area (like fill); I will post an example later.This is the new button: ReQuant00.PNG (Size: 1.12 KB / Downloads: 280) Sometimes, when there are color gradients in an image, the color quantization can guide to something like this (blue areas between back and white area): To solve these 'gaps' (4.), you can color them black (1.) or white (2.); or you can use the new button and click in the blue area. A re-quantization will be done without the color blue (3.). That's it. Rolf RE: Img4Dat - Philippe Hurbain - 2019-12-19 (2019-12-19, 17:24)Rolf Osterthun Wrote: Sometimes, when there are color gradients in an image, the color quantization can guide to something like this (blue areas between back and white area):Ah, excellent! gradients can be a pain indeed, good to have a solution for that. I'll experiment! RE: Img4Dat - N. W. Perry - 2020-05-14 I've been working a bit with the program, and agree with those who say it's very handy, especially if you have an already-cleaned up source image. A couple of suggestions, perhaps for options when exporting the triangle mesh:
A lower-priority suggestion would be auto-sizing templates, at least if the source image is already in the correct proportions. RE: Img4Dat - CJ H. - 2020-08-23 Hi Rolf. I've been playing with Img4dat today. The functions you described in your initial post all seem to be working well for me (Win 10, 64bit) except i can't zoom in on the image/paths. I see the small +/- buttons in the top left but the don't seem to do anything. What am I missing? --cj |