フィルターのクリア

Help with gray scale images

1 回表示 (過去 30 日間)
Amateuromania
Amateuromania 2011 年 6 月 9 日
I have a gray scale image which I after thresholding and histogram equalization write using imwrite. But when I read back this stored image, the gray scale values change. 255 changes to 63 and so on. The data type I am using in imread is uint8 type and if I use double, the entire image is white except the pixels having 0 value. I am unable to store the intermediate images. Please can anyone tell me why this is so?
Thanks in advance

採用された回答

Sean de Wolski
Sean de Wolski 2011 年 6 月 9 日
If you could show us the code with a sample image (e.g. 'cameraman.tif') it would help us.
More than likely when you're viewing it as double, the view range is set from [0 1] so everything 1 or greater (all values in uint8) appear white. Use the second input argument to imshow to change this, e.g:
Igraydouble = double(imread('cameraman.tif'));
figure;
subplot(121)
imshow(Igraydouble)
subplot(122)
imshow(Igraydouble,[])
  7 件のコメント
Amateuromania
Amateuromania 2011 年 6 月 9 日
no it's not what i meant
when you read the image stored by imread and then imshow, you see a very different image than the one shown by any image viewer like picasa. I'm asking whether the image viewer is showing the different picture because of the graymap used in imwrite
Sean de Wolski
Sean de Wolski 2011 年 6 月 9 日
yes, the result of gray2ind

サインインしてコメントする。

その他の回答 (1 件)

Amateuromania
Amateuromania 2011 年 6 月 9 日
the second argument [] only helps in display. The matrix value remains unchanged, i.e, 63 and not 255. How is 255 getting replaced by 63 in uint8?

Community Treasure Hunt

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

Start Hunting!

Translated by