How can I get the percentage of each individual color from an RGB image?

3 vues (au cours des 30 derniers jours)
Aditya
Aditya le 3 Fév 2011
How can I get the percentage of each individual color from an RGB image?

Réponse acceptée

Sean de Wolski
Sean de Wolski le 3 Fév 2011
Do you mean:
I = your_RGB_image;
rgb_percent = squeeze(sum(sum(I,1),2))/sum(I(:))*100
%SCd
  2 commentaires
Aditya
Aditya le 5 Fév 2011
thank you this will help me for my project
Nasser All-Hinai
Nasser All-Hinai le 8 Avr 2012
thanks Sean de Wolski it is really helpful

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Images dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by