How can I combine the separated H, S, V components into a single image?

Respuestas (1)

If you store the individual layers in H, S, and V, you can assemble them along the third dimension using
HSV = cat(3, H, S, V);

6 comentarios

What does this 3 indicates?
Dimension. You are concatinating them on the 3rd dimension. ie one layer behind the other
oK Thanku
I want to concatenate the H component, S component and "equalized" V component... Is it possible with the above code?? But I find error on it
Of course. Simply "equilize" V before applying the concatenation.
Please be more specific about how you equalized V and what error occurs.

Iniciar sesión para comentar.

Categorías

Más información sobre Image Processing Toolbox en Centro de ayuda y File Exchange.

Preguntada:

el 14 de Oct. de 2015

Comentada:

el 14 de Oct. de 2015

Community Treasure Hunt

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

Start Hunting!

Translated by