how can i complete the missing data in a cell to complete the cell. i tried imfill command but not works for me. thanks for your time.

1 次查看(过去 30 天)
1(41).png
  3 个评论

请先登录,再进行评论。

采纳的回答

Image Analyst
Image Analyst 2018-12-13
Your segmentation algorithm is no good. Use a better one. Maybe just need to change the threshold - can't tell because you did not attach the original image.
To merge nearby blobs into a single blob, use imclose().
To get the convex hull, use bwconvhull().

更多回答(1 个)

KSSV
KSSV 2018-12-11
I = imread('download.png') ;
I(I==1) = 0 ;
  3 个评论

请先登录,再进行评论。

Community Treasure Hunt

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

Start Hunting!

Translated by