How can I delete non-connected contour from binary image??

I have binary image containing many contours, I need to delete discontinuous contours and keep those are connect.

Answers (1)

Try bwselect(). Or bwareafilt() or bwpropfilt(). Or label it with bwlabel() and use some other criteria to identify the ones you don't want then use ismember.

Tags

Asked:

on 28 Nov 2017

Answered:

on 28 Nov 2017

Community Treasure Hunt

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

Start Hunting!