Click or drag to resize

CudaInvokeMeanShiftProc Method

http://www.emgu.com
Performs mean-shift procedure and stores information about processed points (i.e. their colors and positions) into two images.

Namespace:  Emgu.CV.Cuda
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntax
public static void MeanShiftProc(
	IInputArray src,
	IOutputArray dstr,
	IOutputArray dstsp,
	int sp,
	int sr,
	MCvTermCriteria criteria,
	Stream stream = null
)

Parameters

src
Type: Emgu.CVIInputArray
Source CudaImage. Only CV 8UC4 images are supported for now.
dstr
Type: Emgu.CVIOutputArray
Destination CudaImage, containing color of mapped points. Will have the same size and type as src.
dstsp
Type: Emgu.CVIOutputArray
Destination CudaImage, containing position of mapped points. Will have the same size as src and CV 16SC2 type.
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