I want to separate the colour RGB and HSV Image, how I do to separate and combine that?
1 次查看(过去 30 天)
显示 更早的评论
example : RGB = the result are Red, Green, Blue image HSV = the result are Hue, Saturation, Value. every result in RGB already get then combine with result the HSV
采纳的回答
KALYAN ACHARJYA
2018-9-12
编辑:KALYAN ACHARJYA
2018-9-12
RGB Component from RGB Image
r=rgbimage(:,:,1) %Red Component
g=rgbimage(:,:,2) %Green Component
b=rgbimage(:,:,3) %Blue Component
Combine All;
rgbImage_combine=cat(3,r,g,b);
HSV Component from RGB Image
HSVimage=rgb2hsv(rgbimage);
H_component=HSVimage(:,:,1) %H Component
S_component=HSVimage(:,:,2) %S Component
I_component=HSVimage(:,:,3) %IComponent
3 个评论
KALYAN ACHARJYA
2018-9-13
@Oman My Pleasure!
If you wish to give credit to the answer, you can vote for it.
Happy To Help Always!
Regards,
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!