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

2 visualizaciones (últimos 30 días)
How can I get the percentage of each individual color from an RGB image?

Respuesta aceptada

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

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Images en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by