how to count big cell only?

4 ビュー (過去 30 日間)
Moon Shadow
Moon Shadow 2014 年 3 月 10 日
回答済み: Image Analyst 2014 年 3 月 25 日
I have image with different cell size but I want Count the number of big cells only!!
I try this code:
A = imread ('cell.png');
level=graythresh(A);
I=im2bw(A,level);
[labeled,numObjects]=bwlabel(I,4)
numObjects = 26

採用された回答

Dishant Arora
Dishant Arora 2014 年 3 月 10 日
編集済み: Dishant Arora 2014 年 3 月 10 日
use bwareaopen to remove objects smaller than certain number of pixels.
BW2 = bwareaopen(BW, thresh);
[~, numObjects] = bwlabel(BW2,4);
  2 件のコメント
Moon Shadow
Moon Shadow 2014 年 3 月 21 日
It did nit worked with me!!
It calculate small and big cells.
I = imread('cell.png'); EDU>> imshow(I); EDU>> bw = im2bw(I); EDU>> figure,imshow(bw);
EDU>> BW2 = bwareaopen(bw, 1000); EDU>> figure,imshow(BW2); [labeled,numObjects]=bwlabel(BW2,4) numObjects = 10
Dishant Arora
Dishant Arora 2014 年 3 月 25 日
Check out for 8-connectivity when using bwlabel or attach your image.

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

その他の回答 (1 件)

Image Analyst
Image Analyst 2014 年 3 月 25 日
See my code to extract the largest blob, attached below in blue. In there, there is a general purpose function I wrote that can take the N largest or smallest blobs in a binary image.

カテゴリ

Help Center および File ExchangeImages についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by