http://www.emgu.com
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.4.2.1777 (2.4.2.1777)
Applies Laplacian operator to the GpuMat
Namespace: Emgu.CV.GPUAssembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.4.2.1777 (2.4.2.1777)
Syntax
C# |
---|
public static void Laplacian( IntPtr src, IntPtr dst, int ksize, double scale, BORDER_TYPE borderType, IntPtr stream ) |
Visual Basic |
---|
Public Shared Sub Laplacian ( _ src As IntPtr, _ dst As IntPtr, _ ksize As Integer, _ scale As Double, _ borderType As BORDER_TYPE, _ stream As IntPtr _ ) |
Visual C++ |
---|
public: static void Laplacian( IntPtr src, IntPtr dst, int ksize, double scale, BORDER_TYPE borderType, IntPtr stream ) |
Parameters
- src
- Type: System..::..IntPtr
The source GpuMat
- dst
- Type: System..::..IntPtr
The resulting GpuMat
- ksize
- Type: System..::..Int32
Either 1 or 3
- scale
- Type: System..::..Double
Optional scale. Use 1.0 for default
- borderType
- Type: Emgu.CV.CvEnum..::..BORDER_TYPE
The border type.
- stream
- Type: System..::..IntPtr
Use a Stream to call the function asynchronously (non-blocking) or IntPtr.Zero to call the function synchronously (blocking).