How can I combine the separated H, S, V components into a single image?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Separated H, S, and equalized V components can be joined into a single image
0 Kommentare
Antworten (1)
Thorsten
am 14 Okt. 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 Kommentare
Siehe auch
Kategorien
Mehr zu Image Processing Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!