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 件のコメント
Arshad Ali
Arshad Ali 2018 年 12 月 12 日
i want to complete the missing cell. means to complete the white cells
Arshad Ali
Arshad Ali 2018 年 12 月 13 日
編集済み: Arshad Ali 2018 年 12 月 13 日
need help ..

サインインしてコメントする。

採用された回答

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().
  2 件のコメント
Arshad Ali
Arshad Ali 2018 年 12 月 19 日
hello sir. This is the original image. you can check in which the cell is blur.
1 (41).png
Image Analyst
Image Analyst 2018 年 12 月 19 日
What does that mean? Do you mean things that are out of focus? Maybe try stdfilt() and threshold on things that have a high standard deviation.

サインインしてコメントする。

その他の回答 (1 件)

KSSV
KSSV 2018 年 12 月 11 日
I = imread('download.png') ;
I(I==1) = 0 ;
  3 件のコメント
KSSV
KSSV 2018 年 12 月 11 日
With what data you want to fill?
Arshad Ali
Arshad Ali 2018 年 12 月 11 日
you can check the binary image which i upload above. i want to complete the cells in this image

サインインしてコメントする。

Community Treasure Hunt

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

Start Hunting!

Translated by