Click or drag to resize

ImageTColor, TDepthLaplace Method

http://www.emgu.com
Calculates Laplacian of the source image by summing second x- and y- derivatives calculated using Sobel operator. 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|

Namespace:  Emgu.CV
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
public Image<TColor, float> Laplace(
	int apertureSize
)

Parameters

apertureSize
Type: SystemInt32
Aperture size

Return Value

Type: ImageTColor, Single
The Laplacian of the image
See Also