Click or drag to resize

XImgprocInvokeGradientDericheY Method

http://www.emgu.com
Applies Y Deriche filter to an image.

Namespace:  Emgu.CV.XImgproc
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public static void GradientDericheY(
	IInputArray op,
	IOutputArray dst,
	double alphaDerive,
	double alphaMean
)

Parameters

op
Type: Emgu.CVIInputArray
Source 8-bit or 16bit image, 1-channel or 3-channel image.
dst
Type: Emgu.CVIOutputArray
result CV_32FC image with same number of channel than _op.
alphaDerive
Type: SystemDouble
see paper
alphaMean
Type: SystemDouble
see paper
Remarks
For more details about this implementation, please see here
See Also