How to make disconnected objects connected by adding a shortest path using MATLAB?
- by user198729
bwlabel can be used to get disconnected objects in an image:
[L Ne] = bwlabel(image);
I want to make the objects connected by adding a shortest path where necessary.
How do I approach this?