How can I combine the separated H, S, V components into a single image?
Afficher commentaires plus anciens
Separated H, S, and equalized V components can be joined into a single image
Réponses (1)
Thorsten
le 14 Oct 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 commentaires
Vishnu R
le 14 Oct 2015
Varun Pai
le 14 Oct 2015
Dimension. You are concatinating them on the 3rd dimension. ie one layer behind the other
Vishnu R
le 14 Oct 2015
Vishnu R
le 14 Oct 2015
Jan
le 14 Oct 2015
Of course. Simply "equilize" V before applying the concatenation.
Thorsten
le 14 Oct 2015
Please be more specific about how you equalized V and what error occurs.
Catégories
En savoir plus sur Image Filtering and Enhancement dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!