how i can get color histogram of H channel of HSV image?
1 回表示 (過去 30 日間)
古いコメントを表示
how i can get H channel color histogram of HSV image
0 件のコメント
採用された回答
Walter Roberson
2017 年 4 月 5 日
4 件のコメント
Walter Roberson
2017 年 4 月 5 日
YourImage = imread('autumn.tif');
HSV = rgb2hsv(YourImage);
H = HSV(:,:,1);
histogram(H, 10);
その他の回答 (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!