|
@@ -138,16 +138,16 @@ export const TRACK_RANSAC_REPROJECTIONERROR_NDC = TRACK_RANSAC_REPROJECTIONERROR
|
138
|
138
|
export const TRACK_GRID_GRANULARITY = 15; //20; //10; // the value of N
|
139
|
139
|
|
140
|
140
|
/** Used to identify the best maches */
|
141
|
|
-export const TRACK_MATCH_RATIO = 0.7; // usually a value in [0.6, 0.8] - low values => strict tracking
|
|
141
|
+export const TRACK_MATCH_RATIO = 0.65; // usually a value in [0.6, 0.8] - low values => strict tracking
|
142
|
142
|
|
143
|
143
|
/** Number of consecutive frames in which we tolerate a "target lost" situation */
|
144
|
144
|
export const TRACK_LOST_TOLERANCE = 15;
|
145
|
145
|
|
146
|
146
|
/** Interpolation filter: interpolation factor */
|
147
|
|
-export const TRACK_FILTER_ALPHA = 0.125;
|
|
147
|
+export const TRACK_FILTER_ALPHA = 0.2;
|
148
|
148
|
|
149
|
149
|
/** Interpolation filter: correction strength for noisy corners */
|
150
|
150
|
export const TRACK_FILTER_BETA = 1;
|
151
|
151
|
|
152
|
152
|
/** Interpolation filter: translation factor */
|
153
|
|
-export const TRACK_FILTER_TAU = 0.25;
|
|
153
|
+export const TRACK_FILTER_TAU = 0.2;
|