-
Notifications
You must be signed in to change notification settings - Fork 118
/
deepsort.py
executable file
·196 lines (128 loc) · 4.37 KB
/
deepsort.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
from deep_sort.deep_sort import nn_matching
from deep_sort.deep_sort.tracker import Tracker
from deep_sort.application_util import preprocessing as prep
from deep_sort.application_util import visualization
from deep_sort.deep_sort.detection import Detection
import numpy as np
import matplotlib.pyplot as plt
import torch
import torchvision
from scipy.stats import multivariate_normal
def get_gaussian_mask():
#128 is image size
x, y = np.mgrid[0:1.0:128j, 0:1.0:128j]
xy = np.column_stack([x.flat, y.flat])
mu = np.array([0.5,0.5])
sigma = np.array([0.22,0.22])
covariance = np.diag(sigma**2)
z = multivariate_normal.pdf(xy, mean=mu, cov=covariance)
z = z.reshape(x.shape)
z = z / z.max()
z = z.astype(np.float32)
mask = torch.from_numpy(z)
return mask
class deepsort_rbc():
def __init__(self,wt_path=None):
#loading this encoder is slow, should be done only once.
#self.encoder = generate_detections.create_box_encoder("deep_sort/resources/networks/mars-small128.ckpt-68577")
self.encoder = torch.load(wt_path)
self.encoder = self.encoder.cuda()
self.encoder = self.encoder.eval()
print("Deep sort model loaded from path: ", wt_path)
self.metric = nn_matching.NearestNeighborDistanceMetric("cosine",.5 , 100)
self.tracker= Tracker(self.metric)
self.gaussian_mask = get_gaussian_mask().cuda()
self.transforms = torchvision.transforms.Compose([ \
torchvision.transforms.ToPILImage(),\
torchvision.transforms.Resize((128,128)),\
torchvision.transforms.ToTensor()])
def reset_tracker(self):
self.tracker= Tracker(self.metric)
#Deep sort needs the format `top_left_x, top_left_y, width,height
def format_yolo_output( self,out_boxes):
for b in range(len(out_boxes)):
out_boxes[b][0] = out_boxes[b][0] - out_boxes[b][2]/2
out_boxes[b][1] = out_boxes[b][1] - out_boxes[b][3]/2
return out_boxes
def pre_process(self,frame,detections):
transforms = torchvision.transforms.Compose([ \
torchvision.transforms.ToPILImage(),\
torchvision.transforms.Resize((128,128)),\
torchvision.transforms.ToTensor()])
crops = []
for d in detections:
for i in range(len(d)):
if d[i] <0:
d[i] = 0
img_h,img_w,img_ch = frame.shape
xmin,ymin,w,h = d
if xmin > img_w:
xmin = img_w
if ymin > img_h:
ymin = img_h
xmax = xmin + w
ymax = ymin + h
ymin = abs(int(ymin))
ymax = abs(int(ymax))
xmin = abs(int(xmin))
xmax = abs(int(xmax))
try:
crop = frame[ymin:ymax,xmin:xmax,:]
crop = transforms(crop)
crops.append(crop)
except:
continue
crops = torch.stack(crops)
return crops
def extract_features_only(self,frame,coords):
for i in range(len(coords)):
if coords[i] <0:
coords[i] = 0
img_h,img_w,img_ch = frame.shape
xmin,ymin,w,h = coords
if xmin > img_w:
xmin = img_w
if ymin > img_h:
ymin = img_h
xmax = xmin + w
ymax = ymin + h
ymin = abs(int(ymin))
ymax = abs(int(ymax))
xmin = abs(int(xmin))
xmax = abs(int(xmax))
crop = frame[ymin:ymax,xmin:xmax,:]
#crop = crop.astype(np.uint8)
#print(crop.shape,[xmin,ymin,xmax,ymax],frame.shape)
crop = self.transforms(crop)
crop = crop.cuda()
gaussian_mask = self.gaussian_mask
input_ = crop * gaussian_mask
input_ = torch.unsqueeze(input_,0)
features = self.encoder.forward_once(input_)
features = features.detach().cpu().numpy()
corrected_crop = [xmin,ymin,xmax,ymax]
return features,corrected_crop
def run_deep_sort(self, frame, out_scores, out_boxes):
if out_boxes==[]:
self.tracker.predict()
print('No detections')
trackers = self.tracker.tracks
return trackers
detections = np.array(out_boxes)
#features = self.encoder(frame, detections.copy())
processed_crops = self.pre_process(frame,detections).cuda()
processed_crops = self.gaussian_mask * processed_crops
features = self.encoder.forward_once(processed_crops)
features = features.detach().cpu().numpy()
if len(features.shape)==1:
features = np.expand_dims(features,0)
dets = [Detection(bbox, score, feature) \
for bbox,score, feature in\
zip(detections,out_scores, features)]
outboxes = np.array([d.tlwh for d in dets])
outscores = np.array([d.confidence for d in dets])
indices = prep.non_max_suppression(outboxes, 0.8,outscores)
dets = [dets[i] for i in indices]
self.tracker.predict()
self.tracker.update(dets)
return self.tracker,dets