1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-19 02:16:34 +08:00

add multitracker and roiselector to tracking API group

This commit is contained in:
Kurnianggoro
2015-08-21 16:32:48 +09:00
parent 9477193a0e
commit a805f8baf9

View File

@@ -1243,8 +1243,6 @@ class CV_EXPORTS_W TrackerKCF : public Tracker
BOILERPLATE_CODE("KCF",TrackerKCF);
};
//! @}
/************************************ MultiTracker Class ************************************/
/** @brief This class is used to track multiple objects using the specified tracker algorithm.
* The MultiTracker is naive implementation of multiple object tracking.
@@ -1357,6 +1355,8 @@ Rect2d CV_EXPORTS_W selectROI(Mat img, bool fromCenter = true);
Rect2d CV_EXPORTS_W selectROI(const std::string& windowName, Mat img, bool showCrossair = true, bool fromCenter = true);
void CV_EXPORTS_W selectROI(const std::string& windowName, Mat img, std::vector<Rect2d> & boundingBox, bool fromCenter = true);
//! @}
} /* namespace cv */
#endif