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
f822984a
Commit
f822984a
authored
Apr 03, 2015
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #196 from Auron-X/bug_fixing
Bug fixing
parents
ca7c573e
dd9531a5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
precomp.hpp
modules/tracking/src/precomp.hpp
+0
-1
tld_utils.cpp
modules/tracking/src/tld_utils.cpp
+2
-2
No files found.
modules/tracking/src/precomp.hpp
View file @
f822984a
...
...
@@ -44,6 +44,5 @@
#include "opencv2/tracking.hpp"
#include "opencv2/core/utility.hpp"
#include "opencv2/core/private.hpp"
#endif
modules/tracking/src/tld_utils.cpp
View file @
f822984a
...
...
@@ -302,8 +302,8 @@ void TLDEnsembleClassifier::prepareClassifier(int rowstep)
lastStep_
=
rowstep
;
for
(
int
i
=
0
;
i
<
(
int
)
offset
.
size
();
i
++
)
{
offset
[
i
].
x
=
rowstep
*
measurements
[
i
].
val
[
0
]
+
measurements
[
i
].
val
[
1
];
offset
[
i
].
y
=
rowstep
*
measurements
[
i
].
val
[
2
]
+
measurements
[
i
].
val
[
3
];
offset
[
i
].
x
=
rowstep
*
measurements
[
i
].
val
[
2
]
+
measurements
[
i
].
val
[
0
];
offset
[
i
].
y
=
rowstep
*
measurements
[
i
].
val
[
3
]
+
measurements
[
i
].
val
[
1
];
}
}
}
...
...
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