Table of Contents

Class CudaLaplacianFilter

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

Laplacian filter

public class CudaLaplacianFilter : CudaFilter, IDisposable
Inheritance
CudaLaplacianFilter
Implements
Inherited Members

Constructors

CudaLaplacianFilter(DepthType, int, DepthType, int, int, double, BorderType, MCvScalar)

Create a Laplacian filter.

public CudaLaplacianFilter(DepthType srcDepth, int srcChannels, DepthType dstDepth, int dstChannels, int ksize = 1, double scale = 1, BorderType borderType = BorderType.Default, MCvScalar borderValue = default)

Parameters

srcDepth DepthType

The depth type of the source image

srcChannels int

The number of channels in the source image

dstDepth DepthType

The depth type of the destination image

dstChannels int

The number of channels in the destination image

ksize int

Either 1 or 3

scale double

Optional scale. Use 1.0 for default

borderType BorderType

The border type.

borderValue MCvScalar

The border value.