imwrite function for conversion issue?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
K M Ibrahim Khalilullah
am 17 Okt. 2016
Kommentiert: K M Ibrahim Khalilullah
am 17 Okt. 2016
"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?
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 17 Okt. 2016
if isfloat(A)
temp = uint8(A * 255);
imwrite(filename, temp);
else
imwrite(filename, A);
end
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Image Processing Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!