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
f1d183ac
Commit
f1d183ac
authored
Aug 11, 2014
by
Alex Leontiev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vadim
parent
2328bc23
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
tld_tracker.cpp
modules/tracking/src/tld_tracker.cpp
+6
-6
No files found.
modules/tracking/src/tld_tracker.cpp
View file @
f1d183ac
...
...
@@ -48,18 +48,18 @@
#include "tld_tracker.hpp"
#include "opencv2/highgui.hpp"
#define THETA_NN 0.50
const
int
STANDARD_PATCH_SIZE
=
15
;
#define CORE_THRESHOLD 0.5
const
int
NEG_EXAMPLES_IN_INIT_MODEL
=
300
;
const
int
MAX_EXAMPLES_IN_MODEL
=
500
;
const
int
MEASURES_PER_CLASSIFIER
=
13
;
#define SCALE_STEP 1.2
#define ENSEMBLE_THRESHOLD 0.5
#define VARIANCE_THRESHOLD 0.5
#define NEXPERT_THRESHOLD 0.2
const
int
GRIDSIZE
=
15
;
const
int
DOWNSCALE_MODE
=
cv
::
INTER_LINEAR
;
const
double
THETA_NN
=
0.50
;
const
double
CORE_THRESHOLD
=
0.5
;
const
double
SCALE_STEP
=
1.2
;
const
double
ENSEMBLE_THRESHOLD
=
0.5
;
const
double
VARIANCE_THRESHOLD
=
0.5
;
const
double
NEXPERT_THRESHOLD
=
0.2
;
#define BLUR_AS_VADIM
#undef CLOSED_LOOP
static
const
cv
::
Size
GaussBlurKernelSize
(
3
,
3
);
...
...
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