http://www.emgu.com
Filters image using meanshift algorithm

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)

Syntax

C#
public static void cvPyrMeanShiftFiltering(
	IntPtr src,
	IntPtr dst,
	double sp,
	double sr,
	int max_level,
	MCvTermCriteria termcrit
)
Visual Basic
Public Shared Sub cvPyrMeanShiftFiltering ( _
	src As IntPtr, _
	dst As IntPtr, _
	sp As Double, _
	sr As Double, _
	max_level As Integer, _
	termcrit As MCvTermCriteria _
)
Visual C++
public:
static void cvPyrMeanShiftFiltering(
	IntPtr src, 
	IntPtr dst, 
	double sp, 
	double sr, 
	int max_level, 
	MCvTermCriteria termcrit
)

Parameters

src
Type: System..::..IntPtr
Source image
dst
Type: System..::..IntPtr
Result image
sp
Type: System..::..Double

[Missing <param name="sp"/> documentation for "M:Emgu.CV.CvInvoke.cvPyrMeanShiftFiltering(System.IntPtr,System.IntPtr,System.Double,System.Double,System.Int32,Emgu.CV.Structure.MCvTermCriteria)"]

sr
Type: System..::..Double

[Missing <param name="sr"/> documentation for "M:Emgu.CV.CvInvoke.cvPyrMeanShiftFiltering(System.IntPtr,System.IntPtr,System.Double,System.Double,System.Int32,Emgu.CV.Structure.MCvTermCriteria)"]

max_level
Type: System..::..Int32
Use 1 as default value
termcrit
Type: Emgu.CV.Structure..::..MCvTermCriteria
Use new MCvTermCriteria(5, 1) as default value

See Also