how to detect continuous edges

7 views (last 30 days)
ankita gholap
ankita gholap on 24 Oct 2015
Answered: Image Analyst on 24 Oct 2015
how to connect discontinuity coming after applying edge detection technique.

Answers (1)

Image Analyst
Image Analyst on 24 Oct 2015
[labeledImage, numRegions] = bwlabel(binaryImage);
if numRegions > 1
msgbox('There are disconnected edges');
end

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!