forked from motrom/fastmurty
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample_multiview.py
More file actions
339 lines (309 loc) · 14 KB
/
example_multiview.py
File metadata and controls
339 lines (309 loc) · 14 KB
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
# -*- coding: utf-8 -*-
"""
Michael Motro github.com/motrom/fastmurty last modified 4/2/19
This is a simulation of 3-d point targets detected with 3 sensors, each of which
only sees two axes.
Two data association steps are used, between sensors 1 and 2 and between the
resulting estimates and sensor 3.
The test parameters and the number of hypotheses (associations) can be altered to
determine how accuracy and runtime scale with problem difficulty and hypothesis count.
"""
import numpy as np
from time import time
from mhtdaClink import sparse, mhtda, allocateWorkvarsforDA, processOutput
from mhtdaClink import allocateWorkvarsforSSP, SSP # used for evaluation
from mhtdaClink import sparsifyByRow as sparsify
""" settings """
ntests = 100
entryrate = 100 # poisson rate of object entry
fpratio = .005 # poisson rate of fp msmts, wrt entry rate
detect_rate = .995 # detection probability at each time
std = .001 # standard deviation of msmt noise
miss_distance_cutoffs = np.arange(.1,1.01,.1) # for scoring object detection performance
np.random.seed(0)
# tracker settings
max_ns = 600
max_nhyp = 1000
s = 10 # assumed sparsity - part of estimate, not enforced in actual simulation
fprate = fpratio*entryrate
def likelihood1(c, msmts1, msmts2):
# constant term in NLL of normal distribution
var_constant = 4*std**2 # normalizing out inv(Sigma)
constant_term = .5*np.log(np.pi*var_constant)
constant_term += np.log(fpratio/detect_rate+1-detect_rate)*2 + np.log(entryrate)
# get nll of all pairs from first two measurement sets
for i,msmti in enumerate(msmts1):
for j,msmtj in enumerate(msmts2):
c[i,j] = np.square(msmti[0]-msmtj[0])/var_constant + constant_term
pair_miss_exist_prob = (1-detect_rate)*detect_rate/(fpratio+(1-detect_rate)*detect_rate)
def update1(update_matches, msmts1, msmts2, samples, weights):
match_var = std**2 / 2
miss_var = std**2
for sidx, update_match in enumerate(update_matches):
i,j = update_match
if i!=-1 and j!=-1:
samples[sidx] = ((msmts1[i,0]+msmts2[j,0])*.5, msmts1[i,1], msmts2[j,1],
match_var, miss_var, miss_var)
weights[sidx] = 1.
elif i!=-1:
samples[sidx] = (msmts1[i,0], msmts1[i,1], -1,
miss_var, miss_var, -1)
weights[sidx] = pair_miss_exist_prob
elif j!=-1:
samples[sidx] = (msmts2[j,0], -1, msmts2[j,1],
miss_var, -1, miss_var)
weights[sidx] = pair_miss_exist_prob
else:
# all the null updates should be at the end of the array
return sidx
return update_matches.shape[0]
third_miss_loglik = np.log(entryrate) + np.log((1-detect_rate)**2*detect_rate + fpratio)
def likelihood2(c, samples, weights, ns, msmts3):
twopiterm = np.log(2*np.pi)*.5
msmt_var = std**2 * 2
nm = len(msmts3)
for i in range(ns):
sample = samples[i]
if sample[5] == -1: # only msmt1, so only match on 2nd dimension
constant_term_i = third_miss_loglik
constant_term_i += np.log(1./pair_miss_exist_prob/detect_rate-1)
constant_term_i += np.log(msmt_var)*.5
constant_term_i += twopiterm
c[i,:nm] = np.square(sample[1]-msmts3[:,0])/msmt_var + constant_term_i
elif sample[4] == -1: # only msmt2, so only match on 3rd dimension
constant_term_i = third_miss_loglik
constant_term_i += np.log(1./pair_miss_exist_prob/detect_rate-1)
constant_term_i += np.log(msmt_var)*.5
constant_term_i += twopiterm
c[i,:nm] = np.square(sample[2]-msmts3[:,1])/msmt_var + constant_term_i
else: # both
constant_term_i = third_miss_loglik
constant_term_i += np.log(1./detect_rate-1)
constant_term_i += np.log(msmt_var)
constant_term_i += twopiterm*2
c[i,:nm] = np.square(sample[1]-msmts3[:,0])
c[i,:nm] += np.square(sample[2]-msmts3[:,1])
c[i,:nm] /= msmt_var
c[i,:nm] += constant_term_i
# probability of msmt from third set, with no matches, being real and not fp
third_exist_prob = (1-detect_rate)**2*detect_rate
third_exist_prob = third_exist_prob / (third_exist_prob + fpratio)
def update2(update_matches2, update_matches, new_samples, new_weights, msmts1, msmts2, msmts3):
for sidx, update_match2 in enumerate(update_matches2):
new_sample = new_samples[sidx]
id12, id3 = update_match2
if id12 == -1:
if id3 == -1:
return sidx
else:
new_weights[sidx] = third_exist_prob
new_sample[0] = .5
new_sample[1:3] = msmts3[id3, :2]
else:
id1, id2 = update_matches[id12]
if sum((id1==-1, id2==-1, id3==-1)):
new_weights[sidx] = third_exist_prob
else:
new_weights[sidx] = 1.
if id1 == -1:
if id3 == -1:
new_sample[0] = msmts2[id2, 0]
new_sample[1] = .5
new_sample[2] = msmts2[id2, 1]
else:
new_sample[0] = msmts2[id2, 0]
new_sample[1] = msmts3[id3, 0]
new_sample[2] = msmts2[id2,1] + msmts3[id3,1]
elif id2 == -1:
if id3 == -1:
new_sample[0] = msmts1[id1, 0]
new_sample[1] = msmts1[id1, 1]
new_sample[2] = .5
else:
new_sample[0] = msmts1[id1,0]
new_sample[1] = msmts1[id1,1] + msmts3[id3,0]
new_sample[2] = msmts3[id3,1]
elif id3 == -1:
new_sample[0] = msmts1[id1,0] + msmts2[id2,0]
new_sample[1] = msmts1[id1,1]
new_sample[2] = msmts2[id2,1]
else:
new_sample[0] = msmts1[id1,0] + msmts2[id2,0]
new_sample[1] = msmts1[id1,1] + msmts3[id3,0]
new_sample[2] = msmts2[id2,1] + msmts3[id3,1]
workvarsforscoring = allocateWorkvarsforSSP(entryrate, entryrate + int(fprate*6) + 3)
def scoreObj(tru, est):
c2 = [[sum(np.square(sample[:3]-truobj)) for sample in est] for truobj in tru]
c2 = np.sqrt(c2)
m,n = c2.shape
scores = []
for miss_cutoff in miss_distance_cutoffs:
c = c2 - miss_cutoff
if sparse:
c = sparsify(c, s)
x, y = SSP(c, workvarsforscoring)
nFN = sum(np.array(x)==-1)
nFP = sum(np.array(y)==-1)
scores.append((nFN,nFP,m,n))
return np.array(scores)
def scoreTrack(tru_tracks, tru_m, update_matches, update_matches2):
track_found = np.zeros(tru_tracks.shape[0], dtype=bool)
fpcount = 0
pcount = 0
for id12, id3 in update_matches2:
if id12 == -1:
id1 = -1
id2 = -1
else:
id1, id2 = update_matches[id12]
if all((id1==-1,id2==-1,id3==-1)) == 3:
continue
in_tru_tracks = np.all(tru_tracks == (id1,id2,id3), axis=1)
if any(in_tru_tracks):
in_tru_tracks = np.where(in_tru_tracks)[0][0]
track_found[in_tru_tracks] = True
else:
fpcount += 1
pcount += 1
fncount = tru_m - np.sum(track_found[:tru_m])
return fncount, fpcount, tru_m, pcount
max_nm = entryrate + int(fprate*6) + 3 # poisson cdf @ 6 = .99992
timed_total_all = 0.
timed_update_all = 0.
obj_scores_all = np.zeros((miss_distance_cutoffs.shape[0],4), dtype=int)
track_scores_all = np.zeros(4, dtype=int)
samples = np.zeros((max_ns, 6))
weights = np.zeros((max_ns,))
hypotheses = np.zeros((max_nhyp, max_ns), dtype=bool)
out_assocs = np.zeros((max_nhyp, max_ns+max_nm, 2), dtype=np.int32)
out_y = np.zeros(max_nm, dtype=bool)
hypothesis_weights = np.zeros((max_nhyp,))
ids = np.zeros((max_ns,), dtype=np.uint16)
ns = 0
new_samples = samples.copy()
new_weights = weights.copy()
new_hypotheses = hypotheses.copy()
new_hypothesis_weights = hypothesis_weights.copy()
new_ids = ids.copy()
new_ns = 0
c1 = np.zeros((max_ns, max_nm))
c2 = c1.copy()
update_matches = np.zeros((max_ns, 2), dtype=int)
update_matches2 = np.zeros((max_ns, 2), dtype=int)
workvars = allocateWorkvarsforDA(max_ns, max_nm, max_nhyp)
backidx1 = np.zeros((max_ns, max_nm), dtype=int)
backidx2 = backidx1.copy()
row_sets = np.zeros((1,max_ns), dtype=np.bool8)
col_sets = np.zeros((1,max_nm), dtype=np.bool8)
includerowsorcols_dummy = np.zeros(1)
for test in range(ntests):
print("test {:d}".format(test))
# generate real objects
tru_m = entryrate#np.random.poisson(entryrate)
tru = np.random.rand(tru_m, 3)
tru_tracks = np.zeros((tru_m, 3), dtype=int) - 1
# generate three sets of measurements
detected = np.random.rand(tru_m) < detect_rate
nreal = sum(detected)
nfalse = np.random.poisson(fprate)
msmts1 = tru[detected][:,[0,1]]+np.random.normal(size=(nreal,2))*std
msmts1 = np.append(msmts1, np.random.rand(nfalse, 2), axis=0)
tru_tracks[:tru_m][detected,0] = np.arange(nreal)
tru_tracks_false = np.zeros((nfalse, 3), dtype=int)-1
tru_tracks_false[:,0] = np.arange(nreal, nreal+nfalse)
tru_tracks = np.append(tru_tracks, tru_tracks_false, axis=0)
nm1 = nreal+nfalse
detected = np.random.rand(tru_m) < detect_rate
nreal = sum(detected)
nfalse = np.random.poisson(fprate)
msmts2 = tru[detected][:,[0,2]]+np.random.normal(size=(nreal,2))*std
msmts2 = np.append(msmts2, np.random.rand(nfalse, 2), axis=0)
tru_tracks[:tru_m][detected,1] = np.arange(nreal)
tru_tracks_false = np.zeros((nfalse, 3), dtype=int)-1
tru_tracks_false[:,1] = np.arange(nreal, nreal+nfalse)
tru_tracks = np.append(tru_tracks, tru_tracks_false, axis=0)
nm2 = nreal+nfalse
detected = np.random.rand(tru_m) < detect_rate
nreal = sum(detected)
nfalse = np.random.poisson(fprate)
msmts3 = tru[detected][:,[1,2]]+np.random.normal(size=(nreal,2))*std
msmts3 = np.append(msmts3, np.random.rand(nfalse, 2), axis=0)
tru_tracks[:tru_m][detected,2] = np.arange(nreal)
tru_tracks_false = np.zeros((nfalse, 3), dtype=int)-1
tru_tracks_false[:,2] = np.arange(nreal, nreal+nfalse)
tru_tracks = np.append(tru_tracks, tru_tracks_false, axis=0)
nm3 = nreal+nfalse
# first update
timed_total = time()
likelihood1(c1, msmts1, msmts2)
c = sparsify(c1, s) if sparse else c1
row_sets[0,:nm1] = True
row_sets[0,nm1:] = False
col_sets[0,:nm2] = True
col_sets[0,nm2:] = False
timed_start = time()
out_assocs[:] = -2
mhtda(c, row_sets, includerowsorcols_dummy, col_sets, includerowsorcols_dummy,
out_assocs, hypothesis_weights, workvars)
ns = processOutput(update_matches, hypotheses, out_assocs, backidx1, max_ns)
timed_update = time() - timed_start
ns = update1(update_matches, msmts1, msmts2, samples, weights)
# find likelihood between updated objects and third set of measurements
likelihood2(c2, samples, weights, ns, msmts3)
c = sparsify(c2, s) if sparse else c2
# account for the fact that each row miss is normalized
missliks = np.log(1-weights*detect_rate)
missliks_hyp = np.dot(hypotheses, missliks)
hypothesis_weights -= missliks_hyp
col_sets[0,:nm3] = True
col_sets[0,nm3:] = False
# second update
timed_start = time()
out_assocs[:] = -2
mhtda(c, hypotheses, hypothesis_weights, col_sets, includerowsorcols_dummy,
out_assocs, new_hypothesis_weights, workvars)
processOutput(update_matches2, new_hypotheses, out_assocs, backidx2,
max_ns)
timed_update += time() - timed_start
new_ns = update2(update_matches2, update_matches, new_samples, new_weights,
msmts1, msmts2, msmts3)
timed_total = time() - timed_total
## analysis of how hypotheses match truth, for debugging purposes
tru_matches_1_valid = (tru_tracks[:,0] >= 0) | (tru_tracks[:,1] >= 0)
tru_matches_1 = backidx1[tru_tracks[tru_matches_1_valid,0],
tru_tracks[tru_matches_1_valid,1]]
tru_matches_not_here = sum(tru_matches_1 == -1)
if tru_matches_not_here == 0:
tru_hypothesis = np.zeros(hypotheses.shape[1], dtype=bool)
tru_hypothesis[tru_matches_1] = True
matching_hypotheses = np.where(np.all(hypotheses==tru_hypothesis,axis=1))[0]
assert len(matching_hypotheses) <= 1
if len(matching_hypotheses) == 1:
matching_hypothesis = matching_hypotheses[0]
tru_matches_2_score = tru_matches_1_valid & (tru_tracks[:,2] >= 0)
tru_matches_2in = tru_matches_1[tru_tracks[tru_matches_1_valid,2] >= 0]
total_prob = -sum(missliks[tru_matches_1])
total_prob += sum(c2[tru_matches_2in,
tru_tracks[tru_matches_2_score,2]])
tru_matches_1_score = (tru_tracks[:,0] >= 0) & (tru_tracks[:,1] >= 0)
total_prob += sum(c1[tru_tracks[tru_matches_1_valid,0],
tru_tracks[tru_matches_1_valid,1]])
if total_prob + 1e-4 < new_hypothesis_weights[0]:
print("probable error")
else:
tru_assignment_rank = np.searchsorted(new_hypothesis_weights, total_prob)
# score
timed_update_all += timed_update
timed_total_all += timed_total
include_samples = new_hypotheses[0] & (new_weights > .5)
track_scores_all += scoreTrack(tru_tracks, tru_m, update_matches,
update_matches2[new_hypotheses[0]])
obj_scores_all += scoreObj(tru, new_samples[include_samples])
timed_update_all *= 1000./ntests
timed_total_all *= 1000./ntests
obj_score_rates = obj_scores_all[:,:2].astype(float)/obj_scores_all[:,2:]
track_score_rates = track_scores_all[:2].astype(float)/track_scores_all[2:]
#score_rates = track_score_rates
score_rates = np.append(track_score_rates[None,:], obj_score_rates, axis=0)
print("{:.1f} ms update, {:.1f} ms total".format(timed_update_all, timed_total_all))
print(score_rates)