XImgprocInvokeGradientPaillouX Method |
http://www.emgu.com
Applies Paillou 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 GradientPaillouX(
IInputArray op,
IOutputArray dst,
double alpha,
double omega
)
Public Shared Sub GradientPaillouX (
op As IInputArray,
dst As IOutputArray,
alpha As Double,
omega As Double
)
public:
static void GradientPaillouX(
IInputArray^ op,
IOutputArray^ dst,
double alpha,
double omega
)
static member GradientPaillouX :
op : IInputArray *
dst : IOutputArray *
alpha : float *
omega : 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_32F image with same number of channel than op. - alpha
- Type: SystemDouble
see paper - omega
- Type: SystemDouble
see paper
RemarksFor more details about this implementation, please see: Philippe Paillou. Detecting step edges in noisy sar images: a new linear operator. IEEE transactions on geoscience and remote sensing, 35(1):191–196, 1997.
See Also