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)
Syntaxpublic Image<TColor, float> Laplace(
int apertureSize
)
Public Function Laplace (
apertureSize As Integer
) As Image(Of TColor, Single)
public:
Image<TColor, float>^ Laplace(
int apertureSize
)
member Laplace :
apertureSize : int -> Image<'TColor, float32>
Parameters
- apertureSize
- Type: SystemInt32
Aperture size
Return Value
Type:
ImageTColor,
SingleThe Laplacian of the image
See Also