Applies generalized Sobel operator to the image

Namespace: Emgu.CV.GPU
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void Sobel(
	IntPtr src,
	IntPtr dst,
	int dx,
	int dy,
	int ksize,
	double scale
)
Public Shared Sub Sobel ( _
	src As IntPtr, _
	dst As IntPtr, _
	dx As Integer, _
	dy As Integer, _
	ksize As Integer, _
	scale As Double _
)
public:
static void Sobel(
	IntPtr src, 
	IntPtr dst, 
	int dx, 
	int dy, 
	int ksize, 
	double scale
)

Parameters

src
IntPtr
The source GpuMat
dst
IntPtr
The resulting GpuMat
dx
Int32
Order of the derivative x
dy
Int32
Order of the derivative y
ksize
Int32
Size of the extended Sobel kernel
scale
Double
Optional scale, use 1 for default.

See Also