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

1 visualización (últimos 30 días)
Vishnu R
Vishnu R el 14 de Oct. de 2015
Comentada: Thorsten el 14 de Oct. de 2015
Separated H, S, and equalized V components can be joined into a single image

Respuestas (1)

Thorsten
Thorsten el 14 de Oct. de 2015
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
Jan
Jan el 14 de Oct. de 2015
Of course. Simply "equilize" V before applying the concatenation.
Thorsten
Thorsten el 14 de Oct. de 2015
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 Images 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