http://www.emgu.com
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.4.2.1777 (2.4.2.1777)
Filters image using meanshift algorithm
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.4.2.1777 (2.4.2.1777)
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
The spatial window radius.
- sr
- Type: System..::..Double
The color window radius.
- max_level
- Type: System..::..Int32
Maximum level of the pyramid for the segmentation. Use 1 as default value
- termcrit
- Type: Emgu.CV.Structure..::..MCvTermCriteria
Termination criteria: when to stop meanshift iterations. Use new MCvTermCriteria(5, 1) as default value