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