XImgprocInvokeGuidedFilter Method |
http://www.emgu.com
Simple one-line Guided Filter call.
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 GuidedFilter(
IInputArray guide,
IInputArray src,
IOutputArray dst,
int radius,
double eps,
DepthType dDepth = DepthType.Default
)
Public Shared Sub GuidedFilter (
guide As IInputArray,
src As IInputArray,
dst As IOutputArray,
radius As Integer,
eps As Double,
Optional dDepth As DepthType = DepthType.Default
)
public:
static void GuidedFilter(
IInputArray^ guide,
IInputArray^ src,
IOutputArray^ dst,
int radius,
double eps,
DepthType dDepth = DepthType::Default
)
static member GuidedFilter :
guide : IInputArray *
src : IInputArray *
dst : IOutputArray *
radius : int *
eps : float *
?dDepth : DepthType
(* Defaults:
let _dDepth = defaultArg dDepth DepthType.Default
*)
-> unit
Parameters
- guide
- Type: Emgu.CVIInputArray
guided image (or array of images) with up to 3 channels, if it have more then 3 channels then only first 3 channels will be used. - src
- Type: Emgu.CVIInputArray
filtering image with any numbers of channels. - dst
- Type: Emgu.CVIOutputArray
output image. - radius
- Type: SystemInt32
radius of Guided Filter. - eps
- Type: SystemDouble
regularization term of Guided Filter. eps^2 is similar to the sigma in the color space into bilateralFilter. - dDepth (Optional)
- Type: Emgu.CV.CvEnumDepthType
optional depth of the output image.
See Also