Skip to content

Commit

Permalink
Update multitracker.py
Browse files Browse the repository at this point in the history
  • Loading branch information
rohit3463 authored Jan 22, 2020
1 parent ee6eafe commit 05fd11a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion multitracker/multitracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def merge_trackers(self, img, detections):
corner_check = (removal_candidate_trackers_bbox[:,0] < corner_x1 ) | (removal_candidate_trackers_bbox[:,1] < corner_x1 ) | \
(removal_candidate_trackers_bbox[:,2] > corner_x2 ) | (removal_candidate_trackers_bbox[:,3] > corner_y2 )

print (corner_x1,corner_y1,corner_x2,corner_y2)
#print (corner_x1,corner_y1,corner_x2,corner_y2)

# import pdb;pdb.set_trace()
for trackerid in itertools.compress(removal_candidate_trackers,corner_check):
Expand Down

0 comments on commit 05fd11a

Please sign in to comment.