how i can get color histogram of H channel of HSV image?
1 view (last 30 days)
Show older comments
samira bellil
on 5 Apr 2017
Commented: samira bellil
on 5 Apr 2017
how i can get H channel color histogram of HSV image
0 Comments
Accepted Answer
Walter Roberson
on 5 Apr 2017
4 Comments
Walter Roberson
on 5 Apr 2017
YourImage = imread('autumn.tif');
HSV = rgb2hsv(YourImage);
H = HSV(:,:,1);
histogram(H, 10);
More Answers (0)
See Also
Categories
Find more on Histograms in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!