You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/lib/opts.py
+1
Original file line number
Diff line number
Diff line change
@@ -122,6 +122,7 @@ def __init__(self):
122
122
self.parser.add_argument('--custom_video', default=False, help='is custom video provided')
123
123
self.parser.add_argument('--skip_frames', default=1, help='how frequently to skip frames during detection 0: no skiping 1: 1/2 skipped 2: 2/3 skipped 3: 3/4 skipped')
124
124
self.parser.add_argument('--eigen_threshold', default=10, help='threshold of similarity till which detection can be skipped')
125
+
self.parser.add_argument('--detect_frame_interval', default=1, help='how frequently should detection not be skipped to handle new objects entering the scene')
0 commit comments