forked from open-edge-platform/edge-ai-suites
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocalMediaPipeline.json
More file actions
65 lines (65 loc) · 2.44 KB
/
localMediaPipeline.json
File metadata and controls
65 lines (65 loc) · 2.44 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
{
"Nodes": [
{
"Node Class Name": "LocalMultiSensorInputNode",
"Node Name": "Input",
"Thread Number": "1",
"Is Source Node": "true",
"Configure String": "MediaType=(STRING)image;MediaIndex=(INT)0;InputCapacity=(INT)1;FrameRate=(FLOAT)0.0"
},
{
"Node Class Name": "VPLDecoderNode",
"Node Name": "Decoder",
"Thread Number": "1",
"Is Source Node": "false",
"Configure String": "Device=(STRING)GPU.0;CodecType=(STRING)JPEG;BufferType=(STRING)mfxFrame"
},
{
"Node Class Name": "DetectionNode",
"Node Name": "Detection",
"Thread Number": "1",
"Is Source Node": "false",
"Configure String": "InferReqNumber=(INT)6;PreProcessType=(STRING)vaapi-surface-sharing;reshapeWidth=(INT)640;reshapeHeight=(INT)640;Device=(STRING)GPU.0;InferConfig=(STRING_ARRAY)[PERFORMANCE_HINT=LATENCY];PreProcessConfig=(STRING_ARRAY)[VAAPI_THREAD_POOL_SIZE=6,VAAPI_FAST_SCALE_LOAD_FACTOR=0];ModelPath=(STRING)vehicle-bike-detection-yoloxs-001/FP16-INT8/yolox_s.xml;ModelProcConfPath=(STRING)vehicle-bike-detection-yoloxs-001/yolox_s.model_proc.json;Threshold=(FLOAT)0.3;MaxROI=(INT)0;FilterLabels=(STRING_ARRAY)[car,bus,truck]"
},
{
"Node Class Name": "TrackerNode_CPU",
"Node Name": "Tracker",
"Thread Number": "1",
"Is Source Node": "false",
"Configure String": "TrackerType=(STRING)zero_term_imageless"
},
{
"Node Class Name": "MediaOutputNode",
"Node Name": "Output",
"Thread Number": "1",
"Is Source Node": "false"
}
],
"Links": [
{
"Previous Node": "Input",
"Previous Node Port": "0",
"Next Node": "Decoder",
"Next Node Port": "0",
"Queue Size": "1"
},
{
"Previous Node": "Decoder",
"Previous Node Port": "0",
"Next Node": "Detection",
"Next Node Port": "0"
},
{
"Previous Node": "Detection",
"Previous Node Port": "0",
"Next Node": "Tracker",
"Next Node Port": "0"
},
{
"Previous Node": "Tracker",
"Previous Node Port": "0",
"Next Node": "Output",
"Next Node Port": "0"
}
]
}