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

1 visualizzazione (ultimi 30 giorni)
how i can get H channel color histogram of HSV image

Risposta accettata

Walter Roberson
Walter Roberson il 5 Apr 2017
Use histogram() or histcounts() . Or accumarray()
  4 Commenti
Walter Roberson
Walter Roberson il 5 Apr 2017
YourImage = imread('autumn.tif');
HSV = rgb2hsv(YourImage);
H = HSV(:,:,1);
histogram(H, 10);

Accedi per commentare.

Più risposte (0)

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by