Problem with colormap!
이전 댓글 표시
I have a CT image (a matrix 512 x 512) that has maximum value is 2062 and minimum ones is 64. I want to show it so that the maximum pixel get white and the minimum ones get black color. I tried to use function colormap(C), with C=[a a a], a=[0:1/2000:1]'.Then used function image (CT)to show it. I imagined a color bar that begin with black (at 1) and change along with shade value to white (at 2062 or less than that a little). But i got a figure with weird color bar. It's discrete and just black and gray like the attached image (hadn't used function image(CT) yet). I'm wondering what's wrong!

채택된 답변
추가 답변 (1개)
Image Analyst
2015년 8월 15일
Don't use image(). Use imshow():
imshow(CT, []); % Be sure to use [].
댓글 수: 5
Nguyen Tan Duoc
2015년 8월 15일
편집: Nguyen Tan Duoc
2015년 8월 15일
Image Analyst
2015년 8월 15일
Was CT a floating point image (double)? That might be why. You might also need to fiddle with the caxis() function. With imshow() you don't have to worry about any of that - no need to do it manually since imshow() will do it automatically for you.
Nguyen Tan Duoc
2015년 8월 15일
Image Analyst
2015년 8월 15일
Then how did you display the image?
Nguyen Tan Duoc
2015년 8월 20일
편집: Nguyen Tan Duoc
2015년 8월 20일
카테고리
도움말 센터 및 File Exchange에서 White에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
