using greythresh and im2bw

조회 수: 1 (최근 30일)
Douglas Brenner
Douglas Brenner 2016년 11월 6일
편집: Image Analyst 2016년 11월 6일
Figure 1 is great but BW is all black. Thoughts? Thanks
figure (1)
scaled = 255 * width/MAX;
imshow(uint8(scaled));
level = graythresh(scaled)
BW = im2bw(scaled,level);
figure(2);
imshow(uint8(BW))

채택된 답변

Walter Roberson
Walter Roberson 2016년 11월 6일
BW is logical, just 0 and 1. When you uint8() that, you are creating an image with just uint8(0) and uint8(1), which is too dark to be visible.
You are also doing the grayscale conversion on a double array that is out of range for valid double coefficients, and that is affecting your output.
figure (1)
scaled = 255 * width/MAX;
scaled8 = uint8(scaled);
imshow(scaled8);
level = graythresh(scaled8);
BW = im2bw(scaled8, level);
figure(2);
imshow(BW)
  댓글 수: 3
Walter Roberson
Walter Roberson 2016년 11월 6일
My code worked when I tested it on some test data:
width = ndgrid(0:500,0:50);
MAX = 500;
Image Analyst
Image Analyst 2016년 11월 6일
편집: Image Analyst 2016년 11월 6일
Douglas, what is "width"? It's not a scalar is it? It's a 2 or 3-D image, right? Otherwise scaled will not be an image - it will just be a single number.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Images에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by