| CvXImgProcGradientDericheX Method |
Applies X Deriche filter to an image.
Namespace:
OpenCvSharp.XImgProc
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public static void GradientDericheX(
InputArray op,
OutputArray dst,
double alpha,
double omega
)
Public Shared Sub GradientDericheX (
op As InputArray,
dst As OutputArray,
alpha As Double,
omega As Double
)
public:
static void GradientDericheX(
InputArray^ op,
OutputArray^ dst,
double alpha,
double omega
)
static member GradientDericheX :
op : InputArray *
dst : OutputArray *
alpha : float *
omega : float -> unit
Parameters
- op
- Type: OpenCvSharpInputArray
Source 8-bit or 16bit image, 1-channel or 3-channel image. - dst
- Type: OpenCvSharpOutputArray
result CV_32FC image with same number of channel than _op. - alpha
- Type: SystemDouble
double see paper - omega
- Type: SystemDouble
double see paper
See Also