Click or drag to resize
CvInvokeEdgePreservingFilter Method
http://www.emgu.com
Filtering is the fundamental operation in image and video processing. Edge-preserving smoothing filters are used in many different applications.

Namespace: Emgu.CV
Assembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.2.0.2682 (3.2.0.2682)
Syntax
public static void EdgePreservingFilter(
	IInputArray src,
	IOutputArray dst,
	EdgePreservingFilterFlag flags = EdgePreservingFilterFlag.RecursFilter,
	float sigmaS = 60f,
	float sigmaR = 0.4f
)

Parameters

src
Type: Emgu.CVIInputArray
Input 8-bit 3-channel image
dst
Type: Emgu.CVIOutputArray
Output 8-bit 3-channel image
flags (Optional)
Type: Emgu.CV.CvEnumEdgePreservingFilterFlag
Edge preserving filters
sigmaS (Optional)
Type: SystemSingle
Range between 0 to 200
sigmaR (Optional)
Type: SystemSingle
Range between 0 to 1
See Also