Clear Filters
Clear Filters

how can I connect two or more connected components in binary image?

10 views (last 30 days)
after I get connected components for binary image, I need to merge two or more connected components to be one CC
  2 Comments
abdelrahim hashem
abdelrahim hashem on 19 Nov 2017
I get many CCs, some of them represent characters. I need to combine these CCs represent characters to extract text from image. I think the form should be a new CC.

Sign in to comment.

Answers (1)

Image Analyst
Image Analyst on 19 Nov 2017
Try imclose() to merge nearby regions into the same region.
  2 Comments
Image Analyst
Image Analyst on 20 Nov 2017
It basically dilates the binary blobs by one or more layers, making it "grow" and possibly connect to other blobs. This will also make the blob boundaries smoother. Then it erodes that by the same amount to get it back to the same size. The boundary will be smoother than the original and any connections made to adjacent blobs will still be there. So basically it will merge blobs and smooth the outlines.

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!