http://www.emgu.com
Performs mean-shift filtering for each point of the source image. It maps each point of the source image into another point, and as the result we have new color and new position of each point.

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

Syntax

C#
public static void MeanShiftFiltering(
	IntPtr src,
	IntPtr dst,
	int sp,
	int sr,
	MCvTermCriteria criteria
)
Visual Basic
Public Shared Sub MeanShiftFiltering ( _
	src As IntPtr, _
	dst As IntPtr, _
	sp As Integer, _
	sr As Integer, _
	criteria As MCvTermCriteria _
)
Visual C++
public:
static void MeanShiftFiltering(
	IntPtr src, 
	IntPtr dst, 
	int sp, 
	int sr, 
	MCvTermCriteria criteria
)

Parameters

src
Type: System..::..IntPtr
Source GpuImage. Only CV 8UC4 images are supported for now.
dst
Type: System..::..IntPtr
Destination GpuImage, containing color of mapped points. Will have the same size and type as src.
sp
Type: System..::..Int32
Spatial window radius.
sr
Type: System..::..Int32
Color window radius.
criteria
Type: Emgu.CV.Structure..::..MCvTermCriteria
Termination criteria.

See Also