OpenCV  5.0.0-pre
Open Source Computer Vision
Loading...
Searching...
No Matches
Classes | Public Member Functions | Static Public Member Functions | List of all members
cv::legacy::TrackerTLD Class Reference

the TLD (Tracking, learning and detection) tracker More...

#include <opencv2/tracking/tracking_legacy.hpp>

Inheritance diagram for cv::legacy::TrackerTLD:
cv::legacy::Tracker cv::Algorithm

Classes

struct  Params
 

Public Member Functions

virtual ~TrackerTLD () CV_OVERRIDE
 
- Public Member Functions inherited from cv::legacy::Tracker
 Tracker ()
 
virtual ~Tracker () CV_OVERRIDE
 
bool init (InputArray image, const Rect2d &boundingBox)
 Initialize the tracker with a known bounding box that surrounded the target.
 
virtual void read (const FileNode &fn) CV_OVERRIDE=0
 Reads algorithm parameters from a file storage.
 
bool update (InputArray image, Rect2d &boundingBox)
 Update the tracker, find the new most likely bounding box for the target.
 
virtual void write (FileStorage &fs) const CV_OVERRIDE=0
 Stores algorithm parameters in a file storage.
 
- Public Member Functions inherited from cv::Algorithm
 Algorithm ()
 
virtual ~Algorithm ()
 
virtual void clear ()
 Clears the algorithm state.
 
virtual bool empty () const
 Returns true if the Algorithm is empty (e.g. in the very beginning or after unsuccessful read.
 
virtual String getDefaultName () const
 
virtual void save (const String &filename) const
 
void write (const Ptr< FileStorage > &fs, const String &name=String()) const
 
void write (FileStorage &fs, const String &name) const
 

Static Public Member Functions

static Ptr< legacy::TrackerTLDcreate ()
 
static Ptr< legacy::TrackerTLDcreate (const TrackerTLD::Params &parameters)
 Constructor.
 
- Static Public Member Functions inherited from cv::Algorithm
template<typename _Tp >
static Ptr< _Tpload (const String &filename, const String &objname=String())
 Loads algorithm from the file.
 
template<typename _Tp >
static Ptr< _TploadFromString (const String &strModel, const String &objname=String())
 Loads algorithm from a String.
 
template<typename _Tp >
static Ptr< _Tpread (const FileNode &fn)
 Reads algorithm from the file node.
 

Additional Inherited Members

- Protected Member Functions inherited from cv::legacy::Tracker
virtual bool initImpl (const Mat &image, const Rect2d &boundingBox)=0
 
virtual bool updateImpl (const Mat &image, Rect2d &boundingBox)=0
 
- Protected Member Functions inherited from cv::Algorithm
void writeFormat (FileStorage &fs) const
 
- Protected Attributes inherited from cv::legacy::Tracker
Ptr< TrackerContribFeatureSetfeatureSet
 
bool isInit
 
Ptr< TrackerModelmodel
 
Ptr< TrackerContribSamplersampler
 

Detailed Description

the TLD (Tracking, learning and detection) tracker

TLD is a novel tracking framework that explicitly decomposes the long-term tracking task into tracking, learning and detection.

The tracker follows the object from frame to frame. The detector localizes all appearances that have been observed so far and corrects the tracker if necessary. The learning estimates detector's errors and updates it to avoid these errors in the future. The implementation is based on [138] .

The Median Flow algorithm (see cv::TrackerMedianFlow) was chosen as a tracking component in this implementation, following authors. The tracker is supposed to be able to handle rapid motions, partial occlusions, object absence etc.

Constructor & Destructor Documentation

◆ ~TrackerTLD()

virtual cv::legacy::TrackerTLD::~TrackerTLD ( )
inlinevirtual

Member Function Documentation

◆ create() [1/2]

static Ptr< legacy::TrackerTLD > cv::legacy::TrackerTLD::create ( )
static
Python:
cv.legacy.TrackerTLD.create() -> retval
cv.legacy.TrackerTLD_create() -> retval

◆ create() [2/2]

static Ptr< legacy::TrackerTLD > cv::legacy::TrackerTLD::create ( const TrackerTLD::Params parameters)
static
Python:
cv.legacy.TrackerTLD.create() -> retval
cv.legacy.TrackerTLD_create() -> retval

Constructor.

Parameters
parametersTLD parameters TrackerTLD::Params

The documentation for this class was generated from the following file: