Edge linking and hole filling in binarized cell image

조회 수: 1 (최근 30일)
Haider Ali
Haider Ali 2019년 10월 14일
편집: Matt J 2019년 10월 23일
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