XImgprocInvokeGradientDericheX Method |
http://www.emgu.com
Applies X Deriche filter to an image.
Namespace:
Emgu.CV.XImgproc
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic static void GradientDericheX(
IInputArray op,
IOutputArray dst,
double alphaDerive,
double alphaMean
)
Public Shared Sub GradientDericheX (
op As IInputArray,
dst As IOutputArray,
alphaDerive As Double,
alphaMean As Double
)
public:
static void GradientDericheX(
IInputArray^ op,
IOutputArray^ dst,
double alphaDerive,
double alphaMean
)
static member GradientDericheX :
op : IInputArray *
dst : IOutputArray *
alphaDerive : float *
alphaMean : float -> unit
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
RemarksFor more details about this implementation, please see http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.476.5736&rep=rep1&type=pdf
See Also