I want to separate the colour RGB and HSV Image, how I do to separate and combine that?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Oman Wisni
el 12 de Sept. de 2018
Comentada: Oman Wisni
el 13 de Sept. de 2018
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 comentarios
Respuesta aceptada
KALYAN ACHARJYA
el 12 de Sept. de 2018
Editada: KALYAN ACHARJYA
el 12 de Sept. de 2018
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 comentarios
KALYAN ACHARJYA
el 13 de Sept. de 2018
@Oman My Pleasure!
If you wish to give credit to the answer, you can vote for it.
Happy To Help Always!
Regards,
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!