Click or drag to resize

CvInvokeApplyColorMap Method (IInputArray, IOutputArray, IInputArray)

http://www.emgu.com
Applies a user colormap on a given image.

Namespace:  Emgu.CV
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
public static void ApplyColorMap(
	IInputArray src,
	IOutputArray dst,
	IInputArray userColorMap
)

Parameters

src
Type: Emgu.CVIInputArray
The source image, grayscale or colored of type CV_8UC1 or CV_8UC3.
dst
Type: Emgu.CVIOutputArray
The result is the colormapped source image.
userColorMap
Type: Emgu.CVIInputArray
The colormap to apply of type CV_8UC1 or CV_8UC3 and size 256
See Also