How can I equalize the V component of a HSV image?

1 visualización (últimos 30 días)
Vishnu R
Vishnu R el 14 de Oct. de 2015
Comentada: Vishnu R el 14 de Oct. de 2015
I separated the HSV image into H, S, V components... But, I have no V component in my image.. then how i equalize the HSV image??
  2 comentarios
Varun Pai
Varun Pai el 14 de Oct. de 2015
Dear Vishnu ,
If you have multiple questions on the same topic, please do comment at the answer section. I hope this is the continuation of the question http://www.mathworks.com/matlabcentral/answers/248534-how-can-i-perform-histogram-equalization-on-separated-h-s-v-components.
Vishnu R
Vishnu R el 14 de Oct. de 2015
ok sorry sir

Iniciar sesión para comentar.

Respuestas (1)

Varun Pai
Varun Pai el 14 de Oct. de 2015
Please find below code
I = imread('pears.png');
I_hsv = rgb2hsv(I);
V_comp = I_hsv(:,:,3);
eq_V_comp = histeq(V_comp);
I_hsv(:,:,3) = eq_V_comp;
I_eq = hsv2rgb(I_hsv);
figure,imshow(I_eq);

Categorías

Más información sobre Purple en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by