| GuidedFilterCreate Method |
Factory method, create instance of GuidedFilter and produce initialization routines.
Namespace:
OpenCvSharp.XImgProc
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public static GuidedFilter Create(
InputArray guide,
int radius,
double eps
)
Public Shared Function Create (
guide As InputArray,
radius As Integer,
eps As Double
) As GuidedFilter
public:
static GuidedFilter^ Create(
InputArray^ guide,
int radius,
double eps
)
static member Create :
guide : InputArray *
radius : int *
eps : float -> GuidedFilter
Parameters
- guide
- Type: OpenCvSharpInputArray
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. - 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.
Return Value
Type:
GuidedFilter[Missing <returns> documentation for "M:OpenCvSharp.XImgProc.GuidedFilter.Create(OpenCvSharp.InputArray,System.Int32,System.Double)"]
See Also