Class CudaLaplacianFilter
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
DepthTypeThe depth type of the source image
srcChannels
intThe number of channels in the source image
dstDepth
DepthTypeThe depth type of the destination image
dstChannels
intThe number of channels in the destination image
ksize
intEither 1 or 3
scale
doubleOptional scale. Use 1.0 for default
borderType
BorderTypeThe border type.
borderValue
MCvScalarThe border value.