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
3 件のコメント
採用された回答
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!