Effacer les filtres
Effacer les filtres

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

2 vues (au cours des 30 derniers jours)
sachit
sachit le 25 Déc 2014
Modifié(e) : Matt J le 25 Déc 2014
how to combine H, S& V, again after modifying any of the component.

Réponses (1)

Matt J
Matt J le 25 Déc 2014
Modifié(e) : Matt J le 25 Déc 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);

Catégories

En savoir plus sur Convert Image Type dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by