Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv_contrib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv_contrib
Commits
344f8421
Commit
344f8421
authored
Jan 09, 2018
by
klchang
Committed by
Alexander Alekhin
Jan 09, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge pull request #1484 from klchang:master
parent
31bd7d98
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
tracker.hpp
modules/tracking/include/opencv2/tracking/tracker.hpp
+10
-10
No files found.
modules/tracking/include/opencv2/tracking/tracker.hpp
View file @
344f8421
...
...
@@ -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 know
n bounding box that surrounded
the target
@param image The initial frame
@param boundingBox The initial boundig box
@param boundingBox The initial boundi
n
g 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 boundi
n
g 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
;
//!<the initial iterations
int
featureSetNumFeatures
;
//!< # features
/**
* \brief Read parameters from file
* \brief Read parameters from
a
file
*/
void
read
(
const
FileNode
&
fn
);
/**
* \brief Write parameters
in
a file
* \brief Write parameters
to
a file
*/
void
write
(
FileStorage
&
fs
)
const
;
};
...
...
@@ -1199,7 +1199,7 @@ class CV_EXPORTS_W TrackerTLD : public Tracker
};
/** @brief KCF is a novel tracking framework that utilizes properties of circulant matrix to enhance the processing speed.
* This tracking method is an implementation of @cite KCF_ECCV which is extended to K
FC
with color-names features (@cite KCF_CN).
* This tracking method is an implementation of @cite KCF_ECCV which is extended to K
CF
with color-names features (@cite KCF_CN).
* The original paper of KCF is available at <http://www.robots.ox.ac.uk/~joao/publications/henriques_tpami2015.pdf>
* as well as the matlab implementation. For more information about KCF with color-names features, please refer to
* <http://www.cvl.isy.liu.se/research/objrec/visualtracking/colvistrack/index.html>.
...
...
@@ -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 know
n bounding box that surrounded
the target
@param image The initial frame
@param boundingBox The initial boundig box of target
@param boundingBox The initial boundi
n
g box of target
@param tracker_algorithm Multi-tracker algorithm
@return True if new target initialization went succesfully, false otherwise
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment