From 344f84218ee92c5be7485d3e08c5ab002e6dd852 Mon Sep 17 00:00:00 2001 From: klchang <1401210399@pku.edu.cn> Date: Tue, 9 Jan 2018 23:54:12 +0800 Subject: [PATCH] Merge pull request #1484 from klchang:master --- .../include/opencv2/tracking/tracker.hpp | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/modules/tracking/include/opencv2/tracking/tracker.hpp b/modules/tracking/include/opencv2/tracking/tracker.hpp index bd3955577..8612cc57a 100644 --- a/modules/tracking/include/opencv2/tracking/tracker.hpp +++ b/modules/tracking/include/opencv2/tracking/tracker.hpp @@ -527,9 +527,9 @@ class CV_EXPORTS_W Tracker : public virtual Algorithm virtual ~Tracker(); - /** @brief Initialize the tracker with a know bounding box that surrounding the target + /** @brief Initialize the tracker with a known bounding box that surrounded the target @param image The initial frame - @param boundingBox The initial boundig box + @param boundingBox The initial bounding box @return True if initialization went succesfully, false otherwise */ @@ -537,7 +537,7 @@ class CV_EXPORTS_W Tracker : public virtual Algorithm /** @brief Update the tracker, find the new most likely bounding box for the target @param image The current frame - @param boundingBox The boundig box that represent the new target location, if true was returned, not + @param boundingBox The bounding box that represent the new target location, if true was returned, not modified otherwise @return True means that target was located and false means that tracker cannot locate target in @@ -1108,12 +1108,12 @@ class CV_EXPORTS_W TrackerBoosting : public Tracker int iterationInit; //! * as well as the matlab implementation. For more information about KCF with color-names features, please refer to * . @@ -1227,12 +1227,12 @@ public: Params(); /** - * \brief Read parameters from file, currently unused + * \brief Read parameters from a file */ void read(const FileNode& /*fn*/); /** - * \brief Read parameters from file, currently unused + * \brief Write parameters to a file */ void write(FileStorage& /*fs*/) const; @@ -1397,9 +1397,9 @@ public: targetNum = 0; } - /** @brief Add a new target to a tracking-list and initialize the tracker with a know bounding box that surrounding the target + /** @brief Add a new target to a tracking-list and initialize the tracker with a known bounding box that surrounded the target @param image The initial frame - @param boundingBox The initial boundig box of target + @param boundingBox The initial bounding box of target @param tracker_algorithm Multi-tracker algorithm @return True if new target initialization went succesfully, false otherwise