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.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic static void MeanShiftProc(
IInputArray src,
IOutputArray dstr,
IOutputArray dstsp,
int sp,
int sr,
MCvTermCriteria criteria,
Stream stream = null
)
Public Shared Sub MeanShiftProc (
src As IInputArray,
dstr As IOutputArray,
dstsp As IOutputArray,
sp As Integer,
sr As Integer,
criteria As MCvTermCriteria,
Optional stream As Stream = Nothing
)
public:
static void MeanShiftProc(
IInputArray^ src,
IOutputArray^ dstr,
IOutputArray^ dstsp,
int sp,
int sr,
MCvTermCriteria criteria,
Stream^ stream = nullptr
)
static member MeanShiftProc :
src : IInputArray *
dstr : IOutputArray *
dstsp : IOutputArray *
sp : int *
sr : int *
criteria : MCvTermCriteria *
?stream : Stream
(* Defaults:
let _stream = defaultArg stream null
*)
-> unit
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