imshow doesn't display png image file

조회 수: 17 (최근 30일)
R
R 2020년 12월 1일
댓글: R 2020년 12월 1일
Hi,
I'm trying to read and show the attached png file using imread and imshow fuctions, respectively. But the resulting image is only black. Any idea where I'm going wrong?
Thanks,
PS: The code I'm using is:
img = imread('scale2_int_1000ms_frm_1_0.png');
imshow(img)

채택된 답변

Steve Eddins
Steve Eddins 2020년 12월 1일
Your image is stored in the PNG file as unsigned 16-bit integers. When imshow displays a uint16 image, it uses the unsigned 16-bit range by default: 0 is black, and 65535 is white.
Your image has one pixel with the value 32666 near the upper right corner, and it appears that all the other pixel values are less than 3000. In fact, almost all of the pixels equal 2843. When viewed on a [0,65535] scale, these values are almost black. Try setting the display range explicitly when you call imshow:
imshow(img,[0 2843])
Here's what that looks like:
  댓글 수: 1
R
R 2020년 12월 1일
Thanks for the quick reply. This was very helpful. I have obviously made a mistake during image acquisition. Too long integration time, probably.

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

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by