http://www.emgu.com
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.3.0.1416 (2.3.0.1416)
Performs mean-shift procedure and stores information about processed points (i.e. their colors
and positions) into two images.
Namespace: Emgu.CV.GPUAssembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public static void MeanShiftProc( IntPtr src, IntPtr dstr, IntPtr dstsp, int sp, int sr, MCvTermCriteria criteria ) |
Visual Basic |
---|
Public Shared Sub MeanShiftProc ( _ src As IntPtr, _ dstr As IntPtr, _ dstsp As IntPtr, _ sp As Integer, _ sr As Integer, _ criteria As MCvTermCriteria _ ) |
Visual C++ |
---|
public: static void MeanShiftProc( IntPtr src, IntPtr dstr, IntPtr dstsp, int sp, int sr, MCvTermCriteria criteria ) |
Parameters
- src
- Type: System..::..IntPtr
Source GpuImage. Only CV 8UC4 images are supported for now.
- dstr
- Type: System..::..IntPtr
Destination GpuImage, containing color of mapped points. Will have the same size and type as src.
- dstsp
- Type: System..::..IntPtr
Destination GpuImage, containing position of mapped points. Will have the same size as src and CV 16SC2 type.
- sp
- Type: System..::..Int32
Spatial window radius.
- sr
- Type: System..::..Int32
Color window radius.
- criteria
- Type: Emgu.CV.Structure..::..MCvTermCriteria
Termination criteria.