Click or drag to resize

CvToolboxColorPaletteToLookupTable Method

http://www.emgu.com
Convert the color palette to four lookup tables

Namespace:  Emgu.CV.Util
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntax
public static void ColorPaletteToLookupTable(
	ColorPalette palette,
	out Matrix<byte> bTable,
	out Matrix<byte> gTable,
	out Matrix<byte> rTable,
	out Matrix<byte> aTable
)

Parameters

palette
Type: System.Drawing.ImagingColorPalette
The color palette to transform
bTable
Type: Emgu.CVMatrixByte
Lookup table for the B channel
gTable
Type: Emgu.CVMatrixByte
Lookup table for the G channel
rTable
Type: Emgu.CVMatrixByte
Lookup table for the R channel
aTable
Type: Emgu.CVMatrixByte
Lookup table for the A channel
See Also