Filter löschen
Filter löschen

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

2 Ansichten (letzte 30 Tage)
How can I get the percentage of each individual color from an RGB image?

Akzeptierte Antwort

Sean de Wolski
Sean de Wolski am 3 Feb. 2011
Do you mean:
I = your_RGB_image;
rgb_percent = squeeze(sum(sum(I,1),2))/sum(I(:))*100
%SCd

Weitere Antworten (0)

Kategorien

Mehr zu Image Processing Toolbox finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by