Skip to content

Commit fa3cc07

Browse files
authored
Updated default tracker parameters
Updated the lambda coefficient to the one suggested in the original paper (http://www.robots.ox.ac.uk/~joao/publications/henriques_tpami2015.pdf, page 11, Table 2) which works (for me) better then the previous default one.
1 parent 24b8f25 commit fa3cc07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/tracking/src/trackerKCF.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -827,7 +827,7 @@ namespace cv{
827827
TrackerKCF::Params::Params(){
828828
detect_thresh = 0.5;
829829
sigma=0.2;
830-
lambda=0.01;
830+
lambda=0.0001;
831831
interp_factor=0.075;
832832
output_sigma_factor=1.0/16.0;
833833
resize=true;

0 commit comments

Comments
 (0)