How to calculate entropy of color image in matlab?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I want to calculate entropy of color image. I found the command entropy(img) for the grayscale image. I dont know how to find entropy for a color image in matlab. Please help me.
1 commentaire
Réponses (1)
Walter Roberson
le 22 Fév 2017
reshape() the image to a vector and call entropy on that.
4 commentaires
Walter Roberson
le 19 Août 2017
If you have a binary mask, then use it to index the image, and the result will be a vector; you can calculate the entropy of the vector.
Image Analyst
le 19 Août 2017
entropyWithinMask = entropy(grayImage(mask));
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!