How can I combine the separated H, S, V components into a single image?
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Separated H, S, and equalized V components can be joined into a single image
0 Commenti
Risposte (1)
Thorsten
il 14 Ott 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 Commenti
Vedere anche
Categorie
Scopri di più su Image Filtering and Enhancement in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!