cell counting Matlab code?

hi
Could someone help with counting the number of cells that have been segmented in an image. i have segemented the cells and marked the outline of each cell. Now i need to count the number of cells present automatically.

답변 (3개)

Sean de Wolski
Sean de Wolski 2013년 5월 23일

0 개 추천

CC = bwconncomp(BWImage)
CC.NumObjects
Where BWImage is the black and white image with each cell white.
Image Analyst
Image Analyst 2013년 5월 23일

0 개 추천

Simply call bwlabel on your segmented image, and it will count them for you. You don't need the outlines that you got from bwboundaries() or bwperim() to do counting.
[labeledImage, numberOfBlobs] = bwlabel(binaryImage);
If you want other measurements (beyond the count), call regionprops():
measurements = regionprops(labeledImage);
chama
chama 2013년 5월 24일

0 개 추천

hi, thanks for the answer the output is always ans = 1 , even though I have for example 100 cell.

댓글 수: 1

Image Analyst
Image Analyst 2013년 5월 24일
Well then you didn't do the segmentation step in your process very effectively. What did you do?

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

카테고리

태그

질문:

2013년 5월 23일

Community Treasure Hunt

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

Start Hunting!

Translated by