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

Antworten (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 Kommentare

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.

Melden Sie sich an, um zu kommentieren.

Kategorien

Gefragt:

am 14 Okt. 2015

Kommentiert:

am 14 Okt. 2015

Community Treasure Hunt

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

Start Hunting!

Translated by