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
I quite often loose some tracks because of missing detections in a single or two frames.
I added a "minimum age" criteria to the finishing track and save the tracks for one or two frames.
This will propably just work with high framerates of about 20fps and more.
adding a track['age'] = 0 right before the updated_tracks.append(track) in line 45 for matched tracks and changing line 52 if track['max_confidence'] >= sigma_h and (track['frames']) >= t_min: to
I quite often loose some tracks because of missing detections in a single or two frames.
I added a "minimum age" criteria to the finishing track and save the tracks for one or two frames.
This will propably just work with high framerates of about 20fps and more.
adding a
track['age'] = 0
right before theupdated_tracks.append(track)
in line 45 for matched tracks and changing line 52if track['max_confidence'] >= sigma_h and (track['frames']) >= t_min:
towill do it.
Somebody could prove that? Am I missing something?
The text was updated successfully, but these errors were encountered: