Calculates Laplacian of the source image by summing second x- and y- derivatives calculated using Sobel operator:
dst(x,y) = d2src/dx2 + d2src/dy2
Specifying aperture_size=1 gives the fastest variant that is equal to convolving the image with the following kernel:
|0 1 0|
|1 -4 1|
|0 1 0|
Similar to cvSobel function, no scaling is done and the same combinations of input and output formats are supported.
Namespace:
Emgu.CV
Assembly:
Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)
Syntax
C# |
---|
public static void cvLaplace(
IntPtr src,
IntPtr dst,
int aperture_size
) |
Visual Basic (Declaration) |
---|
Public Shared Sub cvLaplace ( _
src As IntPtr, _
dst As IntPtr, _
aperture_size As Integer _
) |
Visual C++ |
---|
public:
static void cvLaplace(
IntPtr src,
IntPtr dst,
int aperture_size
) |
See Also