Click or drag to resize
CudaInvokeMeanShiftFiltering Method
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.Cuda
Assembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntax
public static void MeanShiftFiltering(
	IInputArray src,
	IOutputArray dst,
	int sp,
	int sr,
	MCvTermCriteria criteria,
	Stream stream = null
)

Parameters

src
Type: Emgu.CVIInputArray
Source CudaImage. Only CV 8UC4 images are supported for now.
dst
Type: Emgu.CVIOutputArray
Destination CudaImage, containing color of mapped points. Will have the same size and type as src.
sp
Type: SystemInt32
Spatial window radius.
sr
Type: SystemInt32
Color window radius.
criteria
Type: Emgu.CV.StructureMCvTermCriteria
Termination criteria.
stream (Optional)
Type: Emgu.CV.CudaStream
Use a Stream to call the function asynchronously (non-blocking) or null to call the function synchronously (blocking).
See Also