Click or drag to resize

BitmapExtensionColorPaletteToLookupTable Method

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

Namespace:  Emgu.CV
Assemblies:   Emgu.CV.Platform.NetCore (in Emgu.CV.Platform.NetCore.dll) Version: 4.3.0.3890
  Emgu.CV.Platform.NetFramework (in Emgu.CV.Platform.NetFramework.dll) Version: 4.3.0.3890 (4.3.0.3890)
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