-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathviam_app_config.json
50 lines (50 loc) · 1003 Bytes
/
viam_app_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
{
"components": [
{
"depends_on": [],
"model": "webcam",
"name": "cam1",
"type": "camera",
"attributes": {}
},
{
"name": "transform",
"type": "camera",
"model": "transform",
"attributes": {
"stream": "color",
"source": "cam1",
"pipeline": [
{
"attributes": {
"confidence_threshold": 0.5,
"detector_name": "find_objects"
},
"type": "detections"
}
]
},
"depends_on": [
"cam1"
]
}
],
"services": [
{
"name": "",
"type": "vision",
"attributes": {
"register_models": [
{
"parameters": {
"model_path": "/full/path/to/vision-service-examples/data/effdet0.tflite",
"num_threads": 1
},
"name": "find_objects",
"type": "tflite_detector"
}
]
}
}
]
}