Is my uint16 image matrix and RGB image?
2 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I received data set from somewhere and it is matrix of uint16 (spectrogram). I researched and i couldn't find myself a satisfactory answer. Are the unit16 images an rgb images? Is there a way to determine that?
0 件のコメント
回答 (1 件)
KALYAN ACHARJYA
2019 年 11 月 18 日
編集済み: KALYAN ACHARJYA
2019 年 11 月 18 日
Are the unit16 images an rgb images? Is there a way to determine that?
Check the following:
[r c ch_num]=size(image);
If ch_num=3, you can say, it be RGB Image
or other ways
if size(image,3)==3
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!