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

3 次查看(过去 30 天)
how to combine H, S& V, again after modifying any of the component.

回答(1 个)

Matt J
Matt J 2014-12-25
编辑:Matt J 2014-12-25
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);

类别

Help CenterFile Exchange 中查找有关 Convert Image Type 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by