OpenCV  4.1.0
Open Source Computer Vision
Public Member Functions | Static Public Member Functions | List of all members
cv::TrackerMOSSE Class Reference

the MOSSE (Minimum Output Sum of Squared Error) tracker More...

#include <opencv2/tracking/tracker.hpp>

Inheritance diagram for cv::TrackerMOSSE:
cv::Tracker cv::Algorithm

Public Member Functions

virtual ~TrackerMOSSE () CV_OVERRIDE
 
- Public Member Functions inherited from cv::Tracker
virtual ~Tracker () CV_OVERRIDE
 
bool init (InputArray image, const Rect2d &boundingBox)
 Initialize the tracker with a known bounding box that surrounded the target. More...
 
virtual void read (const FileNode &fn) CV_OVERRIDE=0
 Reads algorithm parameters from a file storage. More...
 
bool update (InputArray image, Rect2d &boundingBox)
 Update the tracker, find the new most likely bounding box for the target. More...
 
virtual void write (FileStorage &fs) const CV_OVERRIDE=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
 
void write (const Ptr< FileStorage > &fs, const String &name=String()) const
 simplified API for language bindings This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. More...
 

Static Public Member Functions

static Ptr< TrackerMOSSEcreate ()
 Constructor. 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 Member Functions inherited from cv::Algorithm
void writeFormat (FileStorage &fs) const
 
- Protected Attributes inherited from cv::Tracker
Ptr< TrackerFeatureSetfeatureSet
 
bool isInit
 
Ptr< TrackerModelmodel
 
Ptr< TrackerSamplersampler
 

Detailed Description

the MOSSE (Minimum Output Sum of Squared Error) tracker

The implementation is based on [20] Visual Object Tracking using Adaptive Correlation Filters

Note
this tracker works with grayscale images, if passed bgr ones, they will get converted internally.

Constructor & Destructor Documentation

§ ~TrackerMOSSE()

virtual cv::TrackerMOSSE::~TrackerMOSSE ( )
inlinevirtual

Member Function Documentation

§ create()

static Ptr<TrackerMOSSE> cv::TrackerMOSSE::create ( )
static
Python:
retval=cv.TrackerMOSSE_create()

Constructor.


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