Click or drag to resize

CvInvokeScharr Method

http://www.emgu.com
Calculates the first x- or y- image derivative using Scharr operator.

Namespace:  Emgu.CV
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
public static void Scharr(
	IInputArray src,
	IOutputArray dst,
	DepthType ddepth,
	int dx,
	int dy,
	double scale = 1,
	double delta = 0,
	BorderType borderType = BorderType.Reflect101
)

Parameters

src
Type: Emgu.CVIInputArray
input image.
dst
Type: Emgu.CVIOutputArray
output image of the same size and the same number of channels as src.
ddepth
Type: Emgu.CV.CvEnumDepthType
output image depth
dx
Type: SystemInt32
order of the derivative x.
dy
Type: SystemInt32
order of the derivative y.
scale (Optional)
Type: SystemDouble
optional scale factor for the computed derivative values; by default, no scaling is applied
delta (Optional)
Type: SystemDouble
optional delta value that is added to the results prior to storing them in dst.
borderType (Optional)
Type: Emgu.CV.CvEnumBorderType
pixel extrapolation method
See Also