| CvXImgProcEdgePreservingFilter Method |
Smoothes an image using the Edge-Preserving filter.
Namespace:
OpenCvSharp.XImgProc
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public static void EdgePreservingFilter(
InputArray src,
OutputArray dst,
int d,
double threshold
)
Public Shared Sub EdgePreservingFilter (
src As InputArray,
dst As OutputArray,
d As Integer,
threshold As Double
)
public:
static void EdgePreservingFilter(
InputArray^ src,
OutputArray^ dst,
int d,
double threshold
)
static member EdgePreservingFilter :
src : InputArray *
dst : OutputArray *
d : int *
threshold : float -> unit
Parameters
- src
- Type: OpenCvSharpInputArray
Source 8-bit 3-channel image. - dst
- Type: OpenCvSharpOutputArray
Destination image of the same size and type as src. - d
- Type: SystemInt32
Diameter of each pixel neighborhood that is used during filtering. Must be greater or equal 3. - threshold
- Type: SystemDouble
Threshold, which distinguishes between noise, outliers, and data.
See Also