1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-18 08:44:11 +08:00

tracking: adding a mosse tracker

This commit is contained in:
berak
2017-10-24 12:45:07 +02:00
parent 26fd198ef2
commit ea6f3d1928
6 changed files with 295 additions and 1 deletions

View File

@@ -1297,6 +1297,22 @@ public:
virtual ~TrackerGOTURN() {}
};
/** @brief the MOSSE tracker
note, that this tracker works with grayscale images, if passed bgr ones, they will get converted internally.
@cite MOSSE Visual Object Tracking using Adaptive Correlation Filters
*/
class CV_EXPORTS_W TrackerMOSSE : public Tracker
{
public:
/** @brief Constructor
*/
CV_WRAP static Ptr<TrackerMOSSE> create();
virtual ~TrackerMOSSE() {}
};
/************************************ MultiTracker Class ---By Laksono Kurnianggoro---) ************************************/
/** @brief This class is used to track multiple objects using the specified tracker algorithm.
* The MultiTracker is naive implementation of multiple object tracking.