Click or drag to resize
CvInvokeColorChange Method
http://www.emgu.com
Given an original color image, two differently colored versions of this image can be mixed seamlessly.

Namespace: Emgu.CV
Assembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.2.0.2682 (3.2.0.2682)
Syntax
public static void ColorChange(
	IInputArray src,
	IInputArray mask,
	IOutputArray dst,
	float redMul = 1f,
	float greenMul = 1f,
	float blueMul = 1f
)

Parameters

src
Type: Emgu.CVIInputArray
Input 8-bit 3-channel image.
mask
Type: Emgu.CVIInputArray
Input 8-bit 1 or 3-channel image.
dst
Type: Emgu.CVIOutputArray
Output image with the same size and type as src .
redMul (Optional)
Type: SystemSingle
R-channel multiply factor. Multiplication factor is between .5 to 2.5.
greenMul (Optional)
Type: SystemSingle
G-channel multiply factor. Multiplication factor is between .5 to 2.5.
blueMul (Optional)
Type: SystemSingle
B-channel multiply factor. Multiplication factor is between .5 to 2.5.
See Also