write an image file

6 ビュー (過去 30 日間)
Elysi Cochin
Elysi Cochin 2020 年 4 月 1 日
回答済み: Image Analyst 2020 年 4 月 1 日
i have a image im of uint16 datatype
figure(1), imshow(im)
figure(2), imshow(uint8(im))
figure(3), imshow(im,[])
all the above lines displays the image in different format
How to write the image in as obtained in 3rd figure format
  2 件のコメント
krishna kotha
krishna kotha 2020 年 4 月 1 日
hii iam krishna
it is clearely mentioned in matlab help
Constantino Carlos Reyes-Aldasoro
Constantino Carlos Reyes-Aldasoro 2020 年 4 月 1 日

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

採用された回答

Image Analyst
Image Analyst 2020 年 4 月 1 日
You need to scale it to 0-255 first (which is what [] does), and then cast to uint8:
image8 = uint8(rescale(im, 0, 255));
imwrite(filename, image8);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeConvert Image Type についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by