필터 지우기
필터 지우기

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

댓글을 달려면 로그인하십시오.

채택된 답변

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
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

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Get Started with Image Processing Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by