http://www.emgu.com
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.3.0.1416 (2.3.0.1416)
Applies Laplacian operator to the GpuMat
Namespace: Emgu.CV.GPUAssembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public static void Laplacian( IntPtr src, IntPtr dst, int ksize, double scale, IntPtr stream ) |
Visual Basic |
---|
Public Shared Sub Laplacian ( _ src As IntPtr, _ dst As IntPtr, _ ksize As Integer, _ scale As Double, _ stream As IntPtr _ ) |
Visual C++ |
---|
public: static void Laplacian( IntPtr src, IntPtr dst, int ksize, double scale, 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
- stream
- Type: System..::..IntPtr
Use a Stream to call the function asynchronously (non-blocking) or IntPtr.Zero to call the function synchronously (blocking).