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
24cca8d7
Commit
24cca8d7
authored
Jul 10, 2014
by
Alex Leontiev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
warnings
parent
c4393803
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
benchmark.cpp
modules/tracking/samples/benchmark.cpp
+1
-1
trackerTLD.cpp
modules/tracking/src/trackerTLD.cpp
+3
-2
No files found.
modules/tracking/samples/benchmark.cpp
View file @
24cca8d7
...
...
@@ -84,7 +84,7 @@ static void parseCommandLineArgs(int argc, char** argv,char* videos[],char* gts[
continue
;
}
bool
isVideo
=
false
;
for
(
int
j
=
0
,
len
=
strlen
(
argv
[
i
]);
j
<
len
;
j
++
){
for
(
int
j
=
0
,
len
=
(
int
)
strlen
(
argv
[
i
]);
j
<
len
;
j
++
){
if
(
!
(
'A'
<=
argv
[
i
][
j
]
&&
argv
[
i
][
j
]
<=
'Z'
)
&&
argv
[
i
][
j
]
!=
'.'
){
isVideo
=
true
;
break
;
...
...
modules/tracking/src/trackerTLD.cpp
View file @
24cca8d7
...
...
@@ -53,7 +53,7 @@
#define NEG_EXAMPLES_IN_INIT_MODEL 300
#define MAX_EXAMPLES_IN_MODEL 500
#define MEASURES_PER_CLASSIFIER 13
#
define
BLUR_AS_VADIM
#
undef
BLUR_AS_VADIM
#undef CLOSED_LOOP
static
const
cv
::
Size
GaussBlurKernelSize
(
3
,
3
);
...
...
@@ -66,6 +66,8 @@ using namespace tld;
* direct formula in resamples
* FIXME(issues)
* THETA_NN 0.5<->0.6 dramatic change vs video 6 !!
* FIXME(features)
* benchmark: save photos --> two streams of photos --> better video
* TODO:
* schoolPC: codec, libopencv-dev
* fix pushbot ->pick commits -> compare_branches->all in 1->resubmit
...
...
@@ -75,7 +77,6 @@ using namespace tld;
* vadim:
*
* blurred in TrackerTLDModel()
* private members: pull_approval --> update master --> merge --> redo --> report
*
* warpAffine -- ?
*/
...
...
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