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

1 Ansicht (letzte 30 Tage)
how i can get H channel color histogram of HSV image

Akzeptierte Antwort

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

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by