MatLUT Method (Byte, Int32) OpenCvSharp Class Library
transforms array of numbers using a lookup table: dst(i)=lut(src(i))

Namespace:  OpenCvSharp.CPlusPlus
Assembly:  OpenCvSharp.CPlusPlus (in OpenCvSharp.CPlusPlus.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public Mat LUT(
	byte[] lut,
	int interpolation = 0
)

Parameters

lut
Type: SystemByte
Look-up table of 256 elements. In the case of multi-channel source array, the table should either have a single channel (in this case the same table is used for all channels) or the same number of channels as in the source array
interpolation (Optional)
Type: SystemInt32

[Missing <param name="interpolation"/> documentation for "M:OpenCvSharp.CPlusPlus.Mat.LUT(System.Byte[],System.Int32)"]

Return Value

Type: Mat

[Missing <returns> documentation for "M:OpenCvSharp.CPlusPlus.Mat.LUT(System.Byte[],System.Int32)"]

See Also

Reference