Merges specified RGB/RGBA channels into a single image.
Syntax
handle = mergecv(r, g, b)
handle = mergecv(r, g, b, a)
handle = mergecv(m)
Inputs
r
Handle of the single channel image or a real, 2D matrix representing the red channel.
An empty matrix ([]) can be used to supress red channel in handle.
Type: integer | mat
g
Handle of the single channel image or a real, 2D matrix representing the green channel.
An empty matrix ([]) can be used to supress green channel in handle.
Type: integer | mat
b
Handle of the single channel image or a real, 2D matrix representing the blue channel.
An empty matrix ([]) can be used to supress blue channel in handle.
Type: integer | mat
a
Handle of the single channel image or a real, 2D matrix representing the alpha channel.
An empty matrix ([]) can be used to supress alpha channel in handle.