Edge linking and hole filling in binarized cell image

1 Ansicht (letzte 30 Tage)
Haider Ali
Haider Ali am 14 Okt. 2019
Bearbeitet: Matt J am 23 Okt. 2019
Hi all, I need to segment and classify blood cells in several images.
I have binarized the image using Otsu thresholding but some of the cell edges are weak.
Can someone suggest a method for linking edges in the binarized cell image and then fill those detected holes?
Original image and binarized image are shown.
The final goal is to use watershed segmentation to classify the cells.
Thanks
  2 Kommentare
KALYAN ACHARJYA
KALYAN ACHARJYA am 18 Okt. 2019
Edge linking and hole filling in binarized cell image
Yes, it can be done using morphological operations.
Haider Ali
Haider Ali am 18 Okt. 2019
@KALYAN, can you suggest the operations for the attached binarized image?
Thanks

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Matt J
Matt J am 23 Okt. 2019
Bearbeitet: Matt J am 23 Okt. 2019
Use imclose with a disk structuring element
se=strel('disk',n);
~imclose(~yourImage,se);

Community Treasure Hunt

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

Start Hunting!

Translated by