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.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntax
public static void MeanShiftSegmentation(
	IInputArray src,
	IOutputArray dst,
	int sp,
	int sr,
	int minSize,
	MCvTermCriteria criteria,
	Stream stream
)

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.
stream
Type: Emgu.CV.CudaStream
Use a Stream to call the function asynchronously (non-blocking) or null to call the function synchronously (blocking).
See Also