@@ -527,17 +527,17 @@ class CV_EXPORTS_W Tracker : public virtual Algorithm
527
527
528
528
virtual ~Tracker ();
529
529
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
531
531
@param image The initial frame
532
- @param boundingBox The initial boundig box
532
+ @param boundingBox The initial bounding box
533
533
534
534
@return True if initialization went succesfully, false otherwise
535
535
*/
536
536
CV_WRAP bool init ( InputArray image, const Rect2d& boundingBox );
537
537
538
538
/* * @brief Update the tracker, find the new most likely bounding box for the target
539
539
@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
541
541
modified otherwise
542
542
543
543
@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
1108
1108
int iterationInit; // !<the initial iterations
1109
1109
int featureSetNumFeatures; // !< # features
1110
1110
/* *
1111
- * \brief Read parameters from file
1111
+ * \brief Read parameters from a file
1112
1112
*/
1113
1113
void read ( const FileNode& fn );
1114
1114
1115
1115
/* *
1116
- * \brief Write parameters in a file
1116
+ * \brief Write parameters to a file
1117
1117
*/
1118
1118
void write ( FileStorage& fs ) const ;
1119
1119
};
@@ -1199,7 +1199,7 @@ class CV_EXPORTS_W TrackerTLD : public Tracker
1199
1199
};
1200
1200
1201
1201
/* * @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).
1203
1203
* The original paper of KCF is available at <http://www.robots.ox.ac.uk/~joao/publications/henriques_tpami2015.pdf>
1204
1204
* as well as the matlab implementation. For more information about KCF with color-names features, please refer to
1205
1205
* <http://www.cvl.isy.liu.se/research/objrec/visualtracking/colvistrack/index.html>.
@@ -1227,12 +1227,12 @@ class CV_EXPORTS_W TrackerKCF : public Tracker
1227
1227
Params ();
1228
1228
1229
1229
/* *
1230
- * \brief Read parameters from file, currently unused
1230
+ * \brief Read parameters from a file
1231
1231
*/
1232
1232
void read (const FileNode& /* fn*/ );
1233
1233
1234
1234
/* *
1235
- * \brief Read parameters from file, currently unused
1235
+ * \brief Write parameters to a file
1236
1236
*/
1237
1237
void write (FileStorage& /* fs*/ ) const ;
1238
1238
@@ -1397,9 +1397,9 @@ class CV_EXPORTS MultiTracker_Alt
1397
1397
targetNum = 0 ;
1398
1398
}
1399
1399
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
1401
1401
@param image The initial frame
1402
- @param boundingBox The initial boundig box of target
1402
+ @param boundingBox The initial bounding box of target
1403
1403
@param tracker_algorithm Multi-tracker algorithm
1404
1404
1405
1405
@return True if new target initialization went succesfully, false otherwise
0 commit comments