RGB to HSV conversion then Generating a Histogram

1 view (last 30 days)
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 Comments
Jan
Jan on 27 Apr 2015
What have you tried so far and which problems occur?
JAM
JAM on 27 Apr 2015
Really I need to extract the dominant colors from an image. I don't know from where to start

Sign in to comment.

Accepted Answer

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

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!