Table of Contents

Class CudaLookUpTable

Namespace
Emgu.CV.Cuda
Assembly
Emgu.CV.dll

Gpu look up table

public class CudaLookUpTable : SharedPtrObject, IDisposable
Inheritance
CudaLookUpTable
Implements
Inherited Members

Constructors

CudaLookUpTable(IInputArray)

Create the look up table

public CudaLookUpTable(IInputArray lookUpTable)

Parameters

lookUpTable IInputArray

It should be either 1 or 3 channel matrix of 1x256

Methods

DisposeObject()

Release all the unmanaged memory associated with this look up table

protected override void DisposeObject()

Transform(IInputArray, IOutputArray, Stream)

Transform the image using the lookup table

public void Transform(IInputArray image, IOutputArray dst, Stream stream = null)

Parameters

image IInputArray

The image to be transformed

dst IOutputArray

The transformation result

stream Stream

Use a Stream to call the function asynchronously (non-blocking) or null to call the function synchronously (blocking).