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 commentaires

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

Connectez-vous pour commenter.

 Réponse acceptée

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

Plus de réponses (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by