Azzera filtri
Azzera filtri

48 bit per pixel image

5 visualizzazioni (ultimi 30 giorni)
Zakir
Zakir il 2 Mag 2011
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 Commento
Sean de Wolski
Sean de Wolski il 2 Mag 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.

Accedi per commentare.

Risposte (2)

Walter Roberson
Walter Roberson il 2 Mag 2011
IMG = uint16(2^16 * rand(768,480,3));
imwrite(IMG, 'test48.png','png');
  1 Commento
Zakir
Zakir il 3 Mag 2011
If I hava 3 matric(R,G,B) of uint16 then hw to cmbine them in a image.
How to Show this Image?

Accedi per commentare.


Sean de Wolski
Sean de Wolski il 3 Mag 2011
I = cat(3,r,g,b);
imshow(I)

Categorie

Scopri di più su Image Processing and Computer Vision in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by