RanorexRanorex Documentation
DetectEdgesLaplace Method (input)
NamespacesRanorexImaging..::.ProcessingDetectEdgesLaplace(Bitmap)
Converts the input images to a grayscale image that contains object edges from the input image using a Laplace filter kernel.
Declaration Syntax
C#Visual BasicVisual C++
public static Bitmap DetectEdgesLaplace(
	Bitmap input
)
Public Shared Function DetectEdgesLaplace ( _
	input As Bitmap _
) As Bitmap
public:
static Bitmap^ DetectEdgesLaplace(
	Bitmap^ input
)
Parameters
input (Bitmap)
An image.
Return Value
A grayscale image containing object edges.
Remarks
By default the LaplaceKernel5x5 is used as the filter kernel, unless the image with or height is smaller than 5 pixels; in that case the LaplaceKernel3x3 is used instead.
Exceptions
ExceptionCondition
ArgumentNullExceptionIf input is null.
ArgumentExceptionIf the input image is not a grayscale image and cannot be converted to Format24bppRgb pixel format (i.e. if it is no color image in a 32 bit format).

Assembly: Ranorex.Core (Module: Ranorex.Core) Version: 3.2.3.16825 (3.2.3.16825)