saving an image using 'imwrite'

조회 수: 16 (최근 30일)
Harry
Harry 2013년 7월 5일
I'm trying to save an grayscale image to a file using
imagesc(Nv)
imwrite(Nv,'C:\Users\bostock_h\Documents\Images\chargemap.jpg')
but for some reason this just creates a file which is just white with the wrong dimensions. But I know 'Nv' is fine because the 'imagesc' brings up the image in MATLAB and it is correct.

채택된 답변

Walter Roberson
Walter Roberson 2013년 7월 5일
imagesc() automatically scales data so that the minimum value maps to the first color and the maximum value maps to the last color. If your data does not happen to be in the range 0 to 1 for floating point values, or 0 to 255 for uint8, or 0 to 65535 for uint16, then the image that imwrite() creates is not going to be the image you want.

추가 답변 (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