how i can get color histogram of H channel of HSV image?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
samira bellil
il 5 Apr 2017
Commentato: samira bellil
il 5 Apr 2017
how i can get H channel color histogram of HSV image
0 Commenti
Risposta accettata
Walter Roberson
il 5 Apr 2017
4 Commenti
Walter Roberson
il 5 Apr 2017
YourImage = imread('autumn.tif');
HSV = rgb2hsv(YourImage);
H = HSV(:,:,1);
histogram(H, 10);
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Histograms in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!