Transforms 8-bit unsigned integers using lookup table: dst(i)=lut(src(i)). Destination array will have the depth type as lut and the same channels number as source. Supports CV_8UC1, CV_8UC3 types.

Namespace: Emgu.CV.GPU
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void LUT(
	IntPtr src,
	IntPtr lut,
	IntPtr dst
)
Public Shared Sub LUT ( _
	src As IntPtr, _
	lut As IntPtr, _
	dst As IntPtr _
)
public:
static void LUT(
	IntPtr src, 
	IntPtr lut, 
	IntPtr dst
)

Parameters

src
IntPtr
The source GpuMat
lut
IntPtr
Pointer to a CvArr (e.g. Emgu.CV.Matrix).
dst
IntPtr
The destination GpuMat

See Also