splitcv
Splits an image into RGB/RGBA channels.
Syntax
[r, g, b] = splitcv(cvhandle)
[r, g, b, a] = splitcv(cvhandle)
Inputs
- cvhandle
- Handle of a color image.
Outputs
- r
- Handle of the single channel image representing the red channel data.
- g
- Handle of the single channel image representing the green channel data.
- b
- Handle of the single channel image representing the blue channel data.
- a
- Handle of the single channel image representing the alpha channel data, if applicable.
Example
%Read image
img = imreadcv('RGBchannels.jpg',1);
figure(1);
imshowcv(img);
[blue, green, red] = splitcv(img);
figure(2);
imshowcv(blue);
figure(3);
imshowcv(red);
figure(4);
imshowcv(green);
cvhandle = imreadcv('bird2.jpg');
[r, g, b] = splitcv(cvhandle);
imshowcv(r);