Filters image using meanshift algorithm

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

Syntax

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

Parameters

src
IntPtr
Source image
dst
IntPtr
Result image
sp
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
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
Int32
Use 1 as default value
termcrit
MCvTermCriteria
Use new MCvTermCriteria(5, 1) as default value

See Also