How can I get the percentage of each individual color from an RGB image?
3 ビュー (過去 30 日間)
古いコメントを表示
How can I get the percentage of each individual color from an RGB image?
0 件のコメント
採用された回答
Sean de Wolski
2011 年 2 月 3 日
Do you mean:
I = your_RGB_image;
rgb_percent = squeeze(sum(sum(I,1),2))/sum(I(:))*100
%SCd
2 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!