mirror of
https://github.com/opencv/opencv_contrib.git
synced 2025-10-20 04:25:42 +08:00
Added Doxygen documentation
This commit is contained in:
@@ -1256,7 +1256,7 @@ class CV_EXPORTS_W TrackerKCF : public Tracker
|
|||||||
|
|
||||||
@sa Tracker, MultiTrackerTLD
|
@sa Tracker, MultiTrackerTLD
|
||||||
*/
|
*/
|
||||||
class CV_EXPORTS_W MultiTracker_Alt
|
class CV_EXPORTS_W MultiTracker
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
/** @brief Constructor for Multitracker
|
/** @brief Constructor for Multitracker
|
||||||
@@ -1273,11 +1273,10 @@ public:
|
|||||||
|
|
||||||
@return True if new target initialization went succesfully, false otherwise
|
@return True if new target initialization went succesfully, false otherwise
|
||||||
*/
|
*/
|
||||||
bool addTarget(const Mat& image, const Rect2d& boundingBox, String tracker_algorithm_name);
|
bool addTarget(const Mat& image, const Rect2d& boundingBox, char* tracker_algorithm_name);
|
||||||
|
|
||||||
/** @brief Update all trackers from the tracking-list, find a new most likely bounding boxes for the targets
|
/** @brief Update all trackers from the tracking-list, find a new most likely bounding boxes for the targets
|
||||||
@param image The current frame
|
@param image The current frame
|
||||||
|
|
||||||
@return True means that all targets were located and false means that tracker couldn't locate one of the targets in
|
@return True means that all targets were located and false means that tracker couldn't locate one of the targets in
|
||||||
current frame. Note, that latter *does not* imply that tracker has failed, maybe target is indeed
|
current frame. Note, that latter *does not* imply that tracker has failed, maybe target is indeed
|
||||||
missing from the frame (say, out of sight)
|
missing from the frame (say, out of sight)
|
||||||
|
Reference in New Issue
Block a user