This repository has been archived by the owner on Jul 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpipeline.json
executable file
·89 lines (89 loc) · 1.94 KB
/
pipeline.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
88
89
{
"type": "GStreamer",
"template": ["appsrc name=source ! decodebin ! videoconvert",
" ! gvadetect model={models[object_detection][person_vehicle_bike][network]} name=detection",
" ! appsink name=destination"],
"description": "Object Detection using gstreamer gvadetect element, check more about gvadetect at https://github.com/openvinotoolkit/dlstreamer_gst/wiki/gvadetect",
"parameters": {
"type": "object",
"properties": {
"detection-properties": {
"element": {
"name": "detection",
"format": "element-properties"
}
},
"detection-device": {
"element": {
"name": "detection",
"property": "device"
},
"type": "string",
"default": "CPU"
},
"detection-model-instance-id": {
"element": {
"name": "detection",
"property": "model-instance-id"
},
"type": "string"
},
"batch-size": {
"element": "detection",
"type": "integer"
},
"inference-interval": {
"element": "detection",
"type": "integer",
"minimum": 1,
"maximum": 4294967295
},
"device-extensions": {
"element": "detection",
"type": "string"
},
"cpu-throughput-streams": {
"element": "detection",
"type": "integer",
"minimum": 0,
"maximum": 4294967295
},
"gpu-throughput-streams": {
"element": "detection",
"type": "integer",
"minimum": 0,
"maximum": 4294967295
},
"ie-config": {
"element": "detection",
"type": "string"
},
"pre-process-backend": {
"element": "detection",
"type": "string"
},
"nireq": {
"element": "detection",
"type": "integer",
"minimum": 1,
"maximum": 64
},
"reshape": {
"element": "detection",
"type": "boolean"
},
"reshape-height": {
"element": "detection",
"type": "integer"
},
"reshape-width": {
"element": "detection",
"type": "integer"
},
"threshold": {
"element": "detection",
"type": "number"
}
}
}
}