how i can get color histogram of H channel of HSV image?

1 回表示 (過去 30 日間)
samira bellil
samira bellil 2017 年 4 月 5 日
コメント済み: samira bellil 2017 年 4 月 5 日
how i can get H channel color histogram of HSV image

採用された回答

Walter Roberson
Walter Roberson 2017 年 4 月 5 日
Use histogram() or histcounts() . Or accumarray()
  4 件のコメント
Walter Roberson
Walter Roberson 2017 年 4 月 5 日
YourImage = imread('autumn.tif');
HSV = rgb2hsv(YourImage);
H = HSV(:,:,1);
histogram(H, 10);
samira bellil
samira bellil 2017 年 4 月 5 日
thank you

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeHistograms についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by