-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsingle_tracker_local_webcam.json
87 lines (87 loc) · 1.79 KB
/
single_tracker_local_webcam.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"mode": "record",
"workers": {
"manager_ip": "129.59.104.153",
"manager_port": 9001,
"instances": [
{
"name": "local",
"id": "local",
"description": "local worker for the MMLA pipeline demo with a video node"
}
]
},
"nodes": [
{
"registry_name": "CPPipelines_MFSortVideo",
"name": "test-1",
"kwargs": {
"video_src": 0,
"width": 640,
"height": null,
"frame_rate": 30,
"frame_key": "image",
"include_meta": true
},
"package": "chimerapy-pipelines"
},
{
"registry_name": "CPPipelines_MFSortDetector",
"name": "mf-sort-detector",
"kwargs": {
"weights": "https://vanderbilt.box.com/shared/static/0024iks6cwzxehrk4x7xyxwbrm79arx9.pt",
"device": "cuda",
"imgsz": 640,
"frames_key": "image"
},
"package": "chimerapy-pipelines"
},
{
"registry_name": "CPPipelines_MFSortTracker",
"name": "mf-sort-tracker-1",
"kwargs": {
"source_key": "test-1",
"frames_key": "image"
},
"package": "chimerapy-pipelines"
},
{
"registry_name": "CPPipelines_BBoxPainter",
"name": "bbox-painter",
"kwargs": {
"frames_key": "image"
},
"package": "chimerapy-pipelines"
}
],
"adj": [
[
"test-1",
"mf-sort-detector"
],
[
"mf-sort-detector",
"mf-sort-tracker-1"
],
[
"mf-sort-tracker-1",
"bbox-painter"
]
],
"manager_config": {
"logdir": "cp-logs",
"port": 9001
},
"mappings": {
"local": [
"test-1",
"mf-sort-detector",
"mf-sort-tracker-1",
"bbox-painter"
]
},
"timeouts": {
"commit_timeout": 120,
"shutdown_timeout": 300
}
}