필터 지우기
필터 지우기

48 bit per pixel image

조회 수: 5 (최근 30일)
Zakir
Zakir 2011년 5월 2일
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
Sean de Wolski
Sean de Wolski 2011년 5월 2일
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.

댓글을 달려면 로그인하십시오.

답변 (2개)

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

댓글을 달려면 로그인하십시오.


Sean de Wolski
Sean de Wolski 2011년 5월 3일
I = cat(3,r,g,b);
imshow(I)

카테고리

Help CenterFile Exchange에서 Image Processing and Computer Vision에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by