How to find the shortest path between two blobs(contours/closed curves) using MATLAB?

Posted by user198729 on Stack Overflow See other posts from Stack Overflow or by user198729
Published on 2010-04-16T14:08:26Z Indexed on 2010/04/17 4:23 UTC
Read the original article Hit count: 123

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?

© Stack Overflow or respective owner

Related posts about matlab

Related posts about image-processing