Borrar filtros
Borrar filtros

how to combine H(hue), S(saturation) & V(value).

2 visualizaciones (últimos 30 días)
sachit
sachit el 25 de Dic. de 2014
Editada: Matt J el 25 de Dic. de 2014
how to combine H, S& V, again after modifying any of the component.

Respuestas (1)

Matt J
Matt J el 25 de Dic. de 2014
Editada: Matt J el 25 de Dic. de 2014
You mean, you have H,S,V as separate images? If so, this will combine them
HSV=cat(3, H,S, V);
To convert to RGB format,
RGB=hsv2rgb(HSV);

Categorías

Más información sobre Convert Image Type 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