MATLAB: How to extract x and y data after contour lines

contour_linesextractimagesxyvalues

After finding contour lines in a image how to extract x and y values into the .xsl file by using it's given shape after the contour lines.

Best Answer

drawing contour lines has an option of taking out the coordinates.....
[C,h] = contour(X,Y,[val val]) ;
C gives you the coordinates.
Related Question