How can I reset the h and s channels?
1 view (last 30 days)
Show older comments
matlab9000
on 24 Mar 2018
Commented: matlab9000
on 27 Mar 2018
I have an image in hsv and I would like to set the h and s channels to 0 in order to have the desaturated image. How can I do?
0 Comments
Accepted Answer
Walter Roberson
on 24 Mar 2018
NewImage = hsvimage;
NewImage(:, :, 1:2) = 0;
However if your purpose is to desaturate then you should only assign to the s channel, 2
3 Comments
More Answers (0)
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!