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
Split an image into RGB channels and create one image with each of these channels:
図 1. Input image

図 2. Blue channel

図 3. Red channel

図 4. Green channel

%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);




Split an image into RGB channels and display only the red one:
図 5. Input image 1

図 6. Input image 1 modified

cvhandle = imreadcv('bird2.jpg');
[r, g, b] = splitcv(cvhandle);
imshowcv(r);

