Clear Filters
Clear Filters

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 view (last 30 days)
1(41).png
  3 Comments

Sign in to comment.

Accepted Answer

Image Analyst
Image Analyst on 13 Dec 2018
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().

More Answers (1)

KSSV
KSSV on 11 Dec 2018
I = imread('download.png') ;
I(I==1) = 0 ;
  3 Comments

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!