Meta Byte Track
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

byte_tracker.py 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354
  1. import numpy as np
  2. from collections import deque
  3. import os
  4. import os.path as osp
  5. import copy
  6. import torch
  7. import torch.nn.functional as F
  8. from .kalman_filter import KalmanFilter
  9. from mot_online import matching
  10. from .basetrack import BaseTrack, TrackState
  11. class STrack(BaseTrack):
  12. shared_kalman = KalmanFilter()
  13. def __init__(self, tlwh, score, buffer_size=30):
  14. # wait activate
  15. self._tlwh = np.asarray(tlwh, dtype=np.float)
  16. self.kalman_filter = None
  17. self.mean, self.covariance = None, None
  18. self.is_activated = False
  19. self.score = score
  20. self.tracklet_len = 0
  21. def predict(self):
  22. mean_state = self.mean.copy()
  23. if self.state != TrackState.Tracked:
  24. mean_state[7] = 0
  25. self.mean, self.covariance = self.kalman_filter.predict(mean_state, self.covariance)
  26. @staticmethod
  27. def multi_predict(stracks):
  28. if len(stracks) > 0:
  29. multi_mean = np.asarray([st.mean.copy() for st in stracks])
  30. multi_covariance = np.asarray([st.covariance for st in stracks])
  31. for i, st in enumerate(stracks):
  32. if st.state != TrackState.Tracked:
  33. multi_mean[i][7] = 0
  34. multi_mean, multi_covariance = STrack.shared_kalman.multi_predict(multi_mean, multi_covariance)
  35. for i, (mean, cov) in enumerate(zip(multi_mean, multi_covariance)):
  36. stracks[i].mean = mean
  37. stracks[i].covariance = cov
  38. def activate(self, kalman_filter, frame_id):
  39. """Start a new tracklet"""
  40. self.kalman_filter = kalman_filter
  41. self.track_id = self.next_id()
  42. self.mean, self.covariance = self.kalman_filter.initiate(self.tlwh_to_xyah(self._tlwh))
  43. self.tracklet_len = 0
  44. self.state = TrackState.Tracked
  45. if frame_id == 1:
  46. self.is_activated = True
  47. #self.is_activated = True
  48. self.frame_id = frame_id
  49. self.start_frame = frame_id
  50. def re_activate(self, new_track, frame_id, new_id=False):
  51. self.mean, self.covariance = self.kalman_filter.update(
  52. self.mean, self.covariance, self.tlwh_to_xyah(new_track.tlwh)
  53. )
  54. self.tracklet_len = 0
  55. self.state = TrackState.Tracked
  56. self.is_activated = True
  57. self.frame_id = frame_id
  58. if new_id:
  59. self.track_id = self.next_id()
  60. self.score = new_track.score
  61. def update(self, new_track, frame_id):
  62. """
  63. Update a matched track
  64. :type new_track: STrack
  65. :type frame_id: int
  66. :type update_feature: bool
  67. :return:
  68. """
  69. self.frame_id = frame_id
  70. self.tracklet_len += 1
  71. new_tlwh = new_track.tlwh
  72. self.mean, self.covariance = self.kalman_filter.update(
  73. self.mean, self.covariance, self.tlwh_to_xyah(new_tlwh))
  74. self.state = TrackState.Tracked
  75. self.is_activated = True
  76. self.score = new_track.score
  77. @property
  78. # @jit(nopython=True)
  79. def tlwh(self):
  80. """Get current position in bounding box format `(top left x, top left y,
  81. width, height)`.
  82. """
  83. if self.mean is None:
  84. return self._tlwh.copy()
  85. ret = self.mean[:4].copy()
  86. ret[2] *= ret[3]
  87. ret[:2] -= ret[2:] / 2
  88. return ret
  89. @property
  90. # @jit(nopython=True)
  91. def tlbr(self):
  92. """Convert bounding box to format `(min x, min y, max x, max y)`, i.e.,
  93. `(top left, bottom right)`.
  94. """
  95. ret = self.tlwh.copy()
  96. ret[2:] += ret[:2]
  97. return ret
  98. @staticmethod
  99. # @jit(nopython=True)
  100. def tlwh_to_xyah(tlwh):
  101. """Convert bounding box to format `(center x, center y, aspect ratio,
  102. height)`, where the aspect ratio is `width / height`.
  103. """
  104. ret = np.asarray(tlwh).copy()
  105. ret[:2] += ret[2:] / 2
  106. ret[2] /= ret[3]
  107. return ret
  108. def to_xyah(self):
  109. return self.tlwh_to_xyah(self.tlwh)
  110. @staticmethod
  111. # @jit(nopython=True)
  112. def tlbr_to_tlwh(tlbr):
  113. ret = np.asarray(tlbr).copy()
  114. ret[2:] -= ret[:2]
  115. return ret
  116. @staticmethod
  117. # @jit(nopython=True)
  118. def tlwh_to_tlbr(tlwh):
  119. ret = np.asarray(tlwh).copy()
  120. ret[2:] += ret[:2]
  121. return ret
  122. def __repr__(self):
  123. return 'OT_{}_({}-{})'.format(self.track_id, self.start_frame, self.end_frame)
  124. class BYTETracker(object):
  125. def __init__(self, args, frame_rate=30):
  126. self.tracked_stracks = [] # type: list[STrack]
  127. self.lost_stracks = [] # type: list[STrack]
  128. self.removed_stracks = [] # type: list[STrack]
  129. self.frame_id = 0
  130. self.args = args
  131. #self.det_thresh = args.track_thresh
  132. self.det_thresh = args.track_thresh + 0.1
  133. self.buffer_size = int(frame_rate / 30.0 * 30)
  134. self.max_time_lost = self.buffer_size
  135. self.max_per_image = args.num_queries
  136. self.kalman_filter = KalmanFilter()
  137. def update(self, output_results):
  138. self.frame_id += 1
  139. activated_starcks = []
  140. refind_stracks = []
  141. lost_stracks = []
  142. removed_stracks = []
  143. scores = output_results["scores"].cpu().numpy()
  144. classes = output_results["labels"].cpu().numpy()
  145. bboxes = output_results["boxes"].cpu().numpy() # x1y1x2y2
  146. remain_inds = scores > self.args.track_thresh
  147. inds_low = scores > 0.2
  148. inds_high = scores < self.args.track_thresh
  149. inds_second = np.logical_and(inds_low, inds_high)
  150. dets_second = bboxes[inds_second]
  151. dets = bboxes[remain_inds]
  152. scores_keep = scores[remain_inds]
  153. scores_second = scores[inds_second]
  154. # vis
  155. '''
  156. for i in range(0, dets.shape[0]):
  157. bbox = dets[i][0:4]
  158. cv2.rectangle(img0, (bbox[0], bbox[1]),
  159. (bbox[2], bbox[3]),
  160. (0, 255, 0), 2)
  161. cv2.imshow('dets', img0)
  162. cv2.waitKey(0)
  163. id0 = id0-1
  164. '''
  165. if len(dets) > 0:
  166. '''Detections'''
  167. detections = [STrack(STrack.tlbr_to_tlwh(tlbr), s, 30) for
  168. (tlbr, s) in zip(dets, scores_keep)]
  169. else:
  170. detections = []
  171. ''' Add newly detected tracklets to tracked_stracks'''
  172. unconfirmed = []
  173. tracked_stracks = [] # type: list[STrack]
  174. for track in self.tracked_stracks:
  175. if not track.is_activated:
  176. unconfirmed.append(track)
  177. else:
  178. tracked_stracks.append(track)
  179. ''' Step 2: First association, with Kalman and IOU'''
  180. strack_pool = joint_stracks(tracked_stracks, self.lost_stracks)
  181. # Predict the current location with KF
  182. STrack.multi_predict(strack_pool)
  183. dists = matching.iou_distance(strack_pool, detections)
  184. #dists = matching.fuse_motion(self.kalman_filter, dists, strack_pool, detections)
  185. matches, u_track, u_detection = matching.linear_assignment(dists, thresh=0.8)
  186. for itracked, idet in matches:
  187. track = strack_pool[itracked]
  188. det = detections[idet]
  189. if track.state == TrackState.Tracked:
  190. track.update(detections[idet], self.frame_id)
  191. activated_starcks.append(track)
  192. else:
  193. track.re_activate(det, self.frame_id, new_id=False)
  194. refind_stracks.append(track)
  195. ''' Step 3: Second association, with IOU'''
  196. # association the untrack to the low score detections
  197. if len(dets_second) > 0:
  198. '''Detections'''
  199. detections_second = [STrack(STrack.tlbr_to_tlwh(tlbr), s, 30) for
  200. (tlbr, s) in zip(dets_second, scores_second)]
  201. else:
  202. detections_second = []
  203. r_tracked_stracks = [strack_pool[i] for i in u_track if strack_pool[i].state == TrackState.Tracked]
  204. dists = matching.iou_distance(r_tracked_stracks, detections_second)
  205. matches, u_track, u_detection_second = matching.linear_assignment(dists, thresh=0.4)
  206. for itracked, idet in matches:
  207. track = r_tracked_stracks[itracked]
  208. det = detections_second[idet]
  209. if track.state == TrackState.Tracked:
  210. track.update(det, self.frame_id)
  211. activated_starcks.append(track)
  212. else:
  213. track.re_activate(det, self.frame_id, new_id=False)
  214. refind_stracks.append(track)
  215. for it in u_track:
  216. #track = r_tracked_stracks[it]
  217. track = r_tracked_stracks[it]
  218. if not track.state == TrackState.Lost:
  219. track.mark_lost()
  220. lost_stracks.append(track)
  221. '''Deal with unconfirmed tracks, usually tracks with only one beginning frame'''
  222. detections = [detections[i] for i in u_detection]
  223. dists = matching.iou_distance(unconfirmed, detections)
  224. matches, u_unconfirmed, u_detection = matching.linear_assignment(dists, thresh=0.7)
  225. for itracked, idet in matches:
  226. unconfirmed[itracked].update(detections[idet], self.frame_id)
  227. activated_starcks.append(unconfirmed[itracked])
  228. for it in u_unconfirmed:
  229. track = unconfirmed[it]
  230. track.mark_removed()
  231. removed_stracks.append(track)
  232. """ Step 4: Init new stracks"""
  233. for inew in u_detection:
  234. track = detections[inew]
  235. if track.score < self.det_thresh:
  236. continue
  237. track.activate(self.kalman_filter, self.frame_id)
  238. activated_starcks.append(track)
  239. """ Step 5: Update state"""
  240. for track in self.lost_stracks:
  241. if self.frame_id - track.end_frame > self.max_time_lost:
  242. track.mark_removed()
  243. removed_stracks.append(track)
  244. # print('Ramained match {} s'.format(t4-t3))
  245. self.tracked_stracks = [t for t in self.tracked_stracks if t.state == TrackState.Tracked]
  246. self.tracked_stracks = joint_stracks(self.tracked_stracks, activated_starcks)
  247. self.tracked_stracks = joint_stracks(self.tracked_stracks, refind_stracks)
  248. self.lost_stracks = sub_stracks(self.lost_stracks, self.tracked_stracks)
  249. self.lost_stracks.extend(lost_stracks)
  250. self.lost_stracks = sub_stracks(self.lost_stracks, self.removed_stracks)
  251. self.removed_stracks.extend(removed_stracks)
  252. self.tracked_stracks, self.lost_stracks = remove_duplicate_stracks(self.tracked_stracks, self.lost_stracks)
  253. # get scores of lost tracks
  254. #output_stracks = [track for track in self.tracked_stracks if track.is_activated]
  255. ret = list()
  256. for track in self.tracked_stracks:
  257. if track.is_activated:
  258. track_dict = {}
  259. track_dict['tracking_id'] = track.track_id
  260. track_dict['active'] = 1
  261. track_dict['bbox'] = track.tlbr
  262. track_dict['score'] = track.score
  263. ret.append(track_dict)
  264. return copy.deepcopy(ret)
  265. def joint_stracks(tlista, tlistb):
  266. exists = {}
  267. res = []
  268. for t in tlista:
  269. exists[t.track_id] = 1
  270. res.append(t)
  271. for t in tlistb:
  272. tid = t.track_id
  273. if not exists.get(tid, 0):
  274. exists[tid] = 1
  275. res.append(t)
  276. return res
  277. def sub_stracks(tlista, tlistb):
  278. stracks = {}
  279. for t in tlista:
  280. stracks[t.track_id] = t
  281. for t in tlistb:
  282. tid = t.track_id
  283. if stracks.get(tid, 0):
  284. del stracks[tid]
  285. return list(stracks.values())
  286. def remove_duplicate_stracks(stracksa, stracksb):
  287. pdist = matching.iou_distance(stracksa, stracksb)
  288. pairs = np.where(pdist < 0.15)
  289. dupa, dupb = list(), list()
  290. for p, q in zip(*pairs):
  291. timep = stracksa[p].frame_id - stracksa[p].start_frame
  292. timeq = stracksb[q].frame_id - stracksb[q].start_frame
  293. if timep > timeq:
  294. dupb.append(q)
  295. else:
  296. dupa.append(p)
  297. resa = [t for i, t in enumerate(stracksa) if not i in dupa]
  298. resb = [t for i, t in enumerate(stracksb) if not i in dupb]
  299. return resa, resb
  300. def remove_fp_stracks(stracksa, n_frame=10):
  301. remain = []
  302. for t in stracksa:
  303. score_5 = t.score_list[-n_frame:]
  304. score_5 = np.array(score_5, dtype=np.float32)
  305. index = score_5 < 0.45
  306. num = np.sum(index)
  307. if num < n_frame:
  308. remain.append(t)
  309. return remain