Skip to content

Commit 344f842

Browse files
klchangalalek
authored andcommitted
Merge pull request #1484 from klchang:master
1 parent 31bd7d9 commit 344f842

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

modules/tracking/include/opencv2/tracking/tracker.hpp

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -527,17 +527,17 @@ class CV_EXPORTS_W Tracker : public virtual Algorithm
527527

528528
virtual ~Tracker();
529529

530-
/** @brief Initialize the tracker with a know bounding box that surrounding the target
530+
/** @brief Initialize the tracker with a known bounding box that surrounded the target
531531
@param image The initial frame
532-
@param boundingBox The initial boundig box
532+
@param boundingBox The initial bounding box
533533
534534
@return True if initialization went succesfully, false otherwise
535535
*/
536536
CV_WRAP bool init( InputArray image, const Rect2d& boundingBox );
537537

538538
/** @brief Update the tracker, find the new most likely bounding box for the target
539539
@param image The current frame
540-
@param boundingBox The boundig box that represent the new target location, if true was returned, not
540+
@param boundingBox The bounding box that represent the new target location, if true was returned, not
541541
modified otherwise
542542
543543
@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
11081108
int iterationInit; //!<the initial iterations
11091109
int featureSetNumFeatures; //!< # features
11101110
/**
1111-
* \brief Read parameters from file
1111+
* \brief Read parameters from a file
11121112
*/
11131113
void read( const FileNode& fn );
11141114

11151115
/**
1116-
* \brief Write parameters in a file
1116+
* \brief Write parameters to a file
11171117
*/
11181118
void write( FileStorage& fs ) const;
11191119
};
@@ -1199,7 +1199,7 @@ class CV_EXPORTS_W TrackerTLD : public Tracker
11991199
};
12001200

12011201
/** @brief KCF is a novel tracking framework that utilizes properties of circulant matrix to enhance the processing speed.
1202-
* This tracking method is an implementation of @cite KCF_ECCV which is extended to KFC with color-names features (@cite KCF_CN).
1202+
* This tracking method is an implementation of @cite KCF_ECCV which is extended to KCF with color-names features (@cite KCF_CN).
12031203
* The original paper of KCF is available at <http://www.robots.ox.ac.uk/~joao/publications/henriques_tpami2015.pdf>
12041204
* as well as the matlab implementation. For more information about KCF with color-names features, please refer to
12051205
* <http://www.cvl.isy.liu.se/research/objrec/visualtracking/colvistrack/index.html>.
@@ -1227,12 +1227,12 @@ class CV_EXPORTS_W TrackerKCF : public Tracker
12271227
Params();
12281228

12291229
/**
1230-
* \brief Read parameters from file, currently unused
1230+
* \brief Read parameters from a file
12311231
*/
12321232
void read(const FileNode& /*fn*/);
12331233

12341234
/**
1235-
* \brief Read parameters from file, currently unused
1235+
* \brief Write parameters to a file
12361236
*/
12371237
void write(FileStorage& /*fs*/) const;
12381238

@@ -1397,9 +1397,9 @@ class CV_EXPORTS MultiTracker_Alt
13971397
targetNum = 0;
13981398
}
13991399

1400-
/** @brief Add a new target to a tracking-list and initialize the tracker with a know bounding box that surrounding the target
1400+
/** @brief Add a new target to a tracking-list and initialize the tracker with a known bounding box that surrounded the target
14011401
@param image The initial frame
1402-
@param boundingBox The initial boundig box of target
1402+
@param boundingBox The initial bounding box of target
14031403
@param tracker_algorithm Multi-tracker algorithm
14041404
14051405
@return True if new target initialization went succesfully, false otherwise

0 commit comments

Comments
 (0)