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!