MATLAB: How can i draw lines over the image lines?I want to do it to find how many repeating line structures are present in the image.Also I want to separate the line plots and oval shapes.How can i do that

image processingImage Processing Toolbox

Best Answer

See attached demos for drawing.
To distinguish between round blobs and non-round blobs, compute the circularity
circularity = 4*pi*Area / Perimeter^2
You can get area and perimeter from regionprops() like my Image Segmentation Tutorial shows