Commit 826cb28d authored by Vladimir's avatar Vladimir

Added Doxygen documentation

parent 25ad33e9
...@@ -1256,7 +1256,7 @@ class CV_EXPORTS_W TrackerKCF : public Tracker ...@@ -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: ...@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment