RGB to HSV conversion then Generating a Histogram

Hello all
I have an rgb image and I want to convert it into HSV image and want to generate a histogram for the to get dominant colors HSVmap1 = rgb2hsv(X1)

2 Kommentare

Jan
Jan am 27 Apr. 2015
What have you tried so far and which problems occur?
JAM
JAM am 27 Apr. 2015
Really I need to extract the dominant colors from an image. I don't know from where to start

Melden Sie sich an, um zu kommentieren.

 Akzeptierte Antwort

Thorsten
Thorsten am 27 Apr. 2015
This may get you started:
I = imread('peppers.png');
HSV = rgb2hsv(I);
H = HSV(:,:,1); % the hue plane
hist(H(:))

Weitere Antworten (0)

Tags

Gefragt:

JAM
am 27 Apr. 2015

Beantwortet:

am 27 Apr. 2015

Community Treasure Hunt

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

Start Hunting!

Translated by