48 bit per pixel image
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
May any one Explame with referance of matlab:
PNG with a bitdepth of 16 (per channel) and passing a 3 channel uint16 matrix, resulting in a 48 bit per pixel image.
how to do this matlab.
I shell be thankful to you. Thanks
1 Kommentar
Sean de Wolski
am 2 Mai 2011
What is your question? How to read one in? How to convert to this? How to convert from this to something else? Be specific, we can't answer a non-question.
Antworten (2)
Walter Roberson
am 2 Mai 2011
IMG = uint16(2^16 * rand(768,480,3));
imwrite(IMG, 'test48.png','png');
Siehe auch
Kategorien
Mehr zu Image Processing and Computer Vision 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!