How can I get the percentage of each individual color from an RGB image?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
How can I get the percentage of each individual color from an RGB image?
0 comentarios
Respuesta aceptada
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
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!