MATLAB: Suggest a program for finding the intersection point of two lines in a skeletonized image.The coordinates of the intersection points has to be returned.

doit4meimage analysisimage processingImage Processing Toolboxno attempt

Best Answer

Try this:
crossings = bwmorph(binaryImage, 'branchpoints');
Related Question