필터 지우기
필터 지우기

How can I get correct output from bwlabel function?

조회 수: 2 (최근 30일)
Alaa
Alaa 2016년 2월 28일
댓글: Walter Roberson 2016년 2월 29일
Hi,
I've a problem with the output of bwlabel () function. I know exactly what is the input and the output of this function, but I don't know why does it give me incorrect output?
The problem is it takes all the cells in my image as one object. In other words, it gives NunOfobjs=1, which is really strange.
I have the following code:
binaryImage = (imread('12_SS.bmp'));% binary image of type logical
OriginalImage = imread('12.bmp');% original image (graysacle) of type uint8
% Label each nerve so we can make measurements of it
[labeledImage,NunOfobjs] = bwlabel(binaryImage, 8);
coloredLabels = label2rgb (labeledImage, 'hsv', 'k', 'shuffle');
figure, imshow(labeledImage, []); title('Labeled Image, from bwlabel()');
figure, imagesc(coloredLabels);
The original image:
The binary image:
  댓글 수: 2
Alaa
Alaa 2016년 2월 28일
I've got the correct answer, I think it counts the white parts as connected components, of which there is only one. Try running bwlabel for the negative of my image (or ~binaryImage), to look for the now-black spots.
Walter Roberson
Walter Roberson 2016년 2월 29일
How did you calculate the binary image? It looks like perhaps you used edge detection, which is finding the boundaries between cells rather than finding the contents of the cells. Labeling the negation of your binary image would be a solution to that.

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

답변 (0개)

카테고리

Help CenterFile Exchange에서 Convert Image Type에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by