48 bit per pixel image
2 ビュー (過去 30 日間)
古いコメントを表示
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
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
2011 年 5 月 2 日
IMG = uint16(2^16 * rand(768,480,3));
imwrite(IMG, 'test48.png','png');
参考
カテゴリ
Help Center および File 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!