how to find 10^3 dimensional histogram of a color image?
1 回表示 (過去 30 日間)
古いコメントを表示
i dont know how to find a 10^3 histogram of a color image.so help me
採用された回答
Walter Roberson
2012 年 1 月 10 日
hist(YourImage(:),10^3)
You will probably not find this to be very useful, though, as it will mix the color information for all of the channels together. You need separate histograms if you want to histogram by channel.
For example,
hist(reshape(YourImage(:,:,2),[],1),10^3)
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Histograms についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!