OpenCV  3.0.0-rc1
Open Source Computer Vision
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Classes | Public Member Functions | Static Public Member Functions | List of all members
cv::TrackerBoosting Class Reference

This is a real-time object tracking based on a novel on-line version of the AdaBoost algorithm. More...

#include "tracker.hpp"

Inheritance diagram for cv::TrackerBoosting:
cv::Tracker cv::Algorithm

Classes

struct  Params
 

Public Member Functions

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

Static Public Member Functions

static Ptr< TrackerBoostingcreateTracker (const TrackerBoosting::Params &parameters=TrackerBoosting::Params())
 Constructor. More...
 
- Static Public Member Functions inherited from cv::Tracker
static Ptr< Trackercreate (const String &trackerType)
 Creates a tracker by its name. More...
 
- Static Public Member Functions inherited from cv::Algorithm
template<typename _Tp >
static Ptr< _Tp > load (const String &filename, const String &objname=String())
 Loads algorithm from the file. More...
 
template<typename _Tp >
static Ptr< _Tp > loadFromString (const String &strModel, const String &objname=String())
 Loads algorithm from a String. More...
 
template<typename _Tp >
static Ptr< _Tp > read (const FileNode &fn)
 Reads algorithm from the file node. More...
 

Additional Inherited Members

- Protected Member Functions inherited from cv::Tracker
virtual bool initImpl (const Mat &image, const Rect2d &boundingBox)=0
 
virtual bool updateImpl (const Mat &image, Rect2d &boundingBox)=0
 
- Protected Attributes inherited from cv::Tracker
Ptr< TrackerFeatureSetfeatureSet
 
bool isInit
 
Ptr< TrackerModelmodel
 
Ptr< TrackerSamplersampler
 

Detailed Description

This is a real-time object tracking based on a novel on-line version of the AdaBoost algorithm.

The classifier uses the surrounding background as negative examples in update step to avoid the drifting problem. The implementation is based on [53] .

Constructor & Destructor Documentation

virtual cv::TrackerBoosting::~TrackerBoosting ( )
inlinevirtual

Member Function Documentation

static Ptr< TrackerBoosting > cv::TrackerBoosting::createTracker ( const TrackerBoosting::Params parameters = TrackerBoosting::Params())
static

Constructor.

Parameters
parametersBOOSTING parameters TrackerBoosting::Params

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