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.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
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