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

Réponses (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 commentaires

What does this 3 indicates?
Dimension. You are concatinating them on the 3rd dimension. ie one layer behind the other
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.

Connectez-vous pour commenter.

Question posée :

le 14 Oct 2015

Commenté :

le 14 Oct 2015

Community Treasure Hunt

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

Start Hunting!

Translated by