Skip to content

Commit

Permalink
fix removing 60% confidence code on basetrack
Browse files Browse the repository at this point in the history
  • Loading branch information
nmathieufact committed Mar 27, 2024
1 parent e51371f commit 5baeeb5
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions bytetracker/basetrack.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
from collections import OrderedDict

import numpy as np


class TrackState(object):
New = 0
Tracked = 1
Expand All @@ -17,16 +12,9 @@ class BaseTrack(object):
is_activated = False
state = TrackState.New

history = OrderedDict()
features = []
curr_feature = None
score = 0
start_frame = 0
frame_id = 0
time_since_update = 0

# multi-camera
location = (np.inf, np.inf)

@property
def end_frame(self):
Expand Down

0 comments on commit 5baeeb5

Please sign in to comment.