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

Answers (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 Comments

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.

Sign in to comment.

Categories

Asked:

on 14 Oct 2015

Commented:

on 14 Oct 2015

Community Treasure Hunt

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

Start Hunting!