How to find the shortest path between two blobs(contours/closed curves) using MATLAB?
- by user198729
bwlabel can be used to get disconnected objects in an image:
[L Ne] = bwlabel(image);
How to calculate the shortest path between two disconnected closed curves?
Is there a practical(not theoretical) solution?