Is my uint16 image matrix and RGB image?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponses (1)
KALYAN ACHARJYA
le 18 Nov 2019
Modifié(e) : KALYAN ACHARJYA
le 18 Nov 2019
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
Voir également
Catégories
En savoir plus sur Get Started with Image Processing Toolbox dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!