Click or drag to resize
CudaInvokeMeanShiftSegmentation Method
http://www.emgu.com
Performs mean-shift segmentation of the source image and eleminates small segments.

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 MeanShiftSegmentation(
	IInputArray src,
	IOutputArray dst,
	int sp,
	int sr,
	int minSize,
	MCvTermCriteria criteria
)

Parameters

src
Type: Emgu.CVIInputArray
Source CudaImage. Only CV 8UC4 images are supported for now.
dst
Type: Emgu.CVIOutputArray
Segmented Image. Will have the same size and type as src. Note that this is an Image type and not CudaImage type
sp
Type: SystemInt32
Spatial window radius.
sr
Type: SystemInt32
Color window radius.
minSize
Type: SystemInt32
Minimum segment size. Smaller segements will be merged.
criteria
Type: Emgu.CV.StructureMCvTermCriteria
Termination criteria.
See Also