http://www.emgu.com
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.3.0.1416 (2.3.0.1416)
Applies generalized Sobel operator to the image
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 Sobel( IntPtr src, IntPtr dst, int dx, int dy, int ksize, double scale, IntPtr stream ) |
Visual Basic |
---|
Public Shared Sub Sobel ( _ src As IntPtr, _ dst As IntPtr, _ dx As Integer, _ dy As Integer, _ ksize As Integer, _ scale As Double, _ stream As IntPtr _ ) |
Visual C++ |
---|
public: static void Sobel( IntPtr src, IntPtr dst, int dx, int dy, int ksize, double scale, IntPtr stream ) |
Parameters
- src
- Type: System..::..IntPtr
The source GpuMat
- dst
- Type: System..::..IntPtr
The resulting GpuMat
- dx
- Type: System..::..Int32
Order of the derivative x
- dy
- Type: System..::..Int32
Order of the derivative y
- ksize
- Type: System..::..Int32
Size of the extended Sobel kernel
- scale
- Type: System..::..Double
Optional scale, use 1 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).