http://www.emgu.com
Updates list of tracks based on current blobs.
Namespace: Emgu.CV.CvbAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic void Update(
CvBlobs blobs,
double thDistance,
uint thInactive,
uint thActive
)
Public Sub Update (
blobs As CvBlobs,
thDistance As Double,
thInactive As UInteger,
thActive As UInteger
)
public:
void Update(
CvBlobs^ blobs,
double thDistance,
unsigned int thInactive,
unsigned int thActive
)
member Update :
blobs : CvBlobs *
thDistance : float *
thInactive : uint32 *
thActive : uint32 -> unit
Parameters
- blobs
- Type: Emgu.CV.CvbCvBlobs
List of blobs - thDistance
- Type: SystemDouble
Distance Max distance to determine when a track and a blob match - thInactive
- Type: SystemUInt32
Inactive Max number of frames a track can be inactive - thActive
- Type: SystemUInt32
Active If a track becomes inactive but it has been active less than thActive frames, the track will be deleted.
See Also