H,S,V components
18 views (last 30 days)
Show older comments
Aysel Alimirzayeva
on 7 Nov 2022
Commented: Aysel Alimirzayeva
on 8 Nov 2022
Hello.How can I display the H,S,V components separately in matlab on the example below?Please,canyou help me?
0 Comments
Accepted Answer
Maik
on 7 Nov 2022
Edited: Maik
on 7 Nov 2022
Im = imread('peppers.png');
% Display RGB image
figure;imshow(Im);
% Convert RGB to HSV
hsvIm = rgb2hsv(Im);
% Display HSV channels
hChannel = hsvIm(:,:,1);
figure;imshow(hChannel);
sChannel = hsvIm(:,:,2);
figure;imshow(sChannel);
vChannel = hsvIm(:,:,3);
figure;imshow(vChannel);
3 Comments
More Answers (2)
John D'Errico
on 7 Nov 2022
trivial, really.
help rgb2hsv
So simply convert to HSV. Then you can use a tool like imshow
waves = imread('waves.jpg');
waves_HSV = rgb2hsv(waves);
imshow(waves_HSV(:,:,1))
title 'H channel'
imshow(waves_HSV(:,:,2))
title 'S channel'
imshow(waves_HSV(:,:,3))
title 'V channel'
Easy peasy.
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!