Edge linking and hole filling in binarized cell image

1 次查看(过去 30 天)
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 个评论
KALYAN ACHARJYA
KALYAN ACHARJYA 2019-10-18
Edge linking and hole filling in binarized cell image
Yes, it can be done using morphological operations.
Haider Ali
Haider Ali 2019-10-18
@KALYAN, can you suggest the operations for the attached binarized image?
Thanks

请先登录,再进行评论。

回答(1 个)

Matt J
Matt J 2019-10-23
编辑:Matt J 2019-10-23
Use imclose with a disk structuring element
se=strel('disk',n);
~imclose(~yourImage,se);

类别

Help CenterFile Exchange 中查找有关 Computer Vision with Simulink 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by