Here's an image:

enter image description here

Can one, using the marching squares algorithm, write a program that given an input image like above, produces the following output:

Two chained line segments, one forming the above contours (hill-like), the other one forming the encapsuled circle contour?

If not, how else would you recommend doing it?

link|improve this question
feedback

1 Answer

If the marching squares algorithm is like marching cubes, it will give you both contour lines.

You can also just subtract neighboring pixels from each other (see: edge detection), if the example image is representative of your images, that you want to process.

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.