Click or drag to resize
CvInvokePyrMeanShiftFiltering Method
http://www.emgu.com
Filters image using meanshift algorithm

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 PyrMeanShiftFiltering(
	IInputArray src,
	IOutputArray dst,
	double sp,
	double sr,
	int maxLevel,
	MCvTermCriteria termcrit
)

Parameters

src
Type: Emgu.CVIInputArray
Source image
dst
Type: Emgu.CVIOutputArray
Result image
sp
Type: SystemDouble
The spatial window radius.
sr
Type: SystemDouble
The color window radius.
maxLevel
Type: SystemInt32
Maximum level of the pyramid for the segmentation. Use 1 as default value
termcrit
Type: Emgu.CV.StructureMCvTermCriteria
Termination criteria: when to stop meanshift iterations. Use new MCvTermCriteria(5, 1) as default value
See Also