Class TrackerMIL
The MIL algorithm trains a classifier in an online manner to separate the object from the background.
Multiple Instance Learning avoids the drift problem for a robust tracking.The implementation is based on @cite MIL.
Original code can be found here [http://vision.ucsd.edu/~bbabenko/project_miltrack.shtml]
Inheritance
System.Object
TrackerMIL
Assembly: OpenCvSharp.dll
Syntax
public class TrackerMIL : Tracker, ICvPtrHolder
Constructors
|
Improve this Doc
View Source
TrackerMIL(IntPtr)
Declaration
protected TrackerMIL(IntPtr p)
Parameters
Type |
Name |
Description |
IntPtr |
p |
|
Methods
|
Improve this Doc
View Source
Create()
Declaration
public static TrackerMIL Create()
Returns
|
Improve this Doc
View Source
Create(Params)
Declaration
public static TrackerMIL Create(Params parameters)
Parameters
Type |
Name |
Description |
Params |
parameters |
MIL parameters
|
Returns
|
Improve this Doc
View Source
DisposeUnmanaged()
Declaration
protected override void DisposeUnmanaged()
Overrides
|
Improve this Doc
View Source
Get()
Declaration
public override IntPtr Get()
Returns
Implements