-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbtrack_cell_config.json
68 lines (67 loc) · 1.73 KB
/
btrack_cell_config.json
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
{
"TrackerConfig":
{
"MotionModel":
{
"name": "cell_motion",
"dt": 1.0,
"measurements": 3,
"states": 6,
"accuracy": 7.5,
"prob_not_assign": 0.1,
"max_lost": 5,
"A": {
"matrix": [1,0,0,1,0,0,
0,1,0,0,1,0,
0,0,1,0,0,1,
0,0,0,1,0,0,
0,0,0,0,1,0,
0,0,0,0,0,1]
},
"H": {
"matrix": [1,0,0,0,0,0,
0,1,0,0,0,0,
0,0,1,0,0,0]
},
"P": {
"sigma": 150.0,
"matrix": [0.1,0,0,0,0,0,
0,0.1,0,0,0,0,
0,0,0.1,0,0,0,
0,0,0,1,0,0,
0,0,0,0,1,0,
0,0,0,0,0,1]
},
"G": {
"sigma": 15.0,
"matrix": [0.5,0.5,0.5,1,1,1]
},
"R": {
"sigma": 5.0,
"matrix": [1,0,0,
0,1,0,
0,0,1]
}
},
"ObjectModel":
{},
"HypothesisModel":
{
"name": "cell_hypothesis",
"hypotheses": ["P_FP", "P_init", "P_term", "P_link", "P_branch", "P_dead"],
"lambda_time": 5.0,
"lambda_dist": 3.0,
"lambda_link": 10.0,
"lambda_branch": 50.0,
"eta": 1e-10,
"theta_dist": 20.0,
"theta_time": 5.0,
"dist_thresh": 40,
"time_thresh": 2,
"apop_thresh": 5,
"segmentation_miss_rate": 0.1,
"apoptosis_rate": 0.001,
"relax": true
}
}
}