imwrite function for conversion issue?

1 回表示 (過去 30 日間)
K M Ibrahim Khalilullah
K M Ibrahim Khalilullah 2016 年 10 月 17 日
"If A is a grayscale or RGB color image of data type double or single, then imwrite assumes the dynamic range is [0,1] and automatically scales the data by 255 before writing it to the file as 8-bit values"
>>How matlab do this?

採用された回答

Walter Roberson
Walter Roberson 2016 年 10 月 17 日
if isfloat(A)
temp = uint8(A * 255);
imwrite(filename, temp);
else
imwrite(filename, A);
end
  1 件のコメント
K M Ibrahim Khalilullah
K M Ibrahim Khalilullah 2016 年 10 月 17 日
Thanks

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeImages についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by