Step 1) Administrative / data entry worker opens ?, loads raster image, and using a 'lasso-like' tool (a la Photoshop 'magnetic' if possible) specifies areas of interest / masks.

Step 2) ?

Step 3) Profit! (i.e., application opens raster image, vector file describing masks, does interesting stuff to areas of interest based on runtime context)

My question is 'what do we use for steps 1 and 2?'

Primary goal is to reduce the time required to complete Steps 1 and 2 (the 'mechanical Turk' part of the process). Strictly secondary goal is the ease of parsing / using the vector format describing the areas of interest / masks in step 3.

Water cooler conversation: 'Sheesh, there's got to be some Flash component that does this!" "What about GIMP?" "If we have to put C or C++ programmers on it, it's not going to be a good investment...." "But what if it only takes a day or two?" "Nothing takes just a day or two," ....

For prototyping, the obvious route is Photoshop -> Illustrator -> SVG. But if there's a framework / library / editor that could make the 'lasso' coding and vector-file generation easy, it might tip the scales in favor of writing a custom editor.

Is there such a framework / library / editor?

link|improve this question

59% accept rate
Question: why does the output have to be a vector file? Any operation taken on a raster image is most likely to generate a raster output. Generating a vector is probably an extra step, and one that loses data rather than gaining it. – Mark Ransom Nov 13 '08 at 23:25
+1 for step 1/2/3 :) And if my info would help, I solved the same problem by using OBJ (Alias|Wavefront). But I implemented parsing myself (it was 1998, I think...) – avp Apr 24 '09 at 7:39
feedback

1 Answer

If a polygon mask would provide an acceptable level of detail for what you are trying to accomplish, then I would look into any number of applications for creating html image maps.

For example, your mechanical Turk could use this online image map editor to create one or more polygons to define your mask. A simple copy and paste of the resulting coordinates into your database and they are done.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.