-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig-server.js.template
More file actions
53 lines (53 loc) · 1.26 KB
/
config-server.js.template
File metadata and controls
53 lines (53 loc) · 1.26 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
module.exports = {
general: {
segmentTime: 4,
listSize: 1440,
pythonPath: "/home/dtek/.virtualenvs/cv/bin/python",
imshow: 0,
writeOutput: 0,
writeTransparentOutput: 1
},
cameras: [
{
ip: 'wowzaec2demo.streamlock.net',
path: '/vod/mp4:BigBuckBunny_115k.mov',
detectParameters: {
inputFps: 30,
detectFps: 3,
width: 240,
height: 160,
minPixelSize: 5000,
motionDeltaThreshold: 5,
motionPaddingCutoutPercent: .2,
cutOutHeightLimit: 150,
checkNLargestObjects: 1,
windowStride: 4,
hogPadding: 4,
hogScale: 1.05,
hogHitThreshold: 0,
nonMaxSuppressionThreshold: .65
}
},
{
ip: '192.168.7.88',
path: '/axis-media/media.amp?resolution=640x480',
detectParameters: {
inputFps: 30,
detectFps: 3,
width: 640,
height: 480,
minPixelSize: 5000,
motionDeltaThreshold: 5,
motionPaddingCutoutPercent: .2,
cutOutHeightLimit: 150,
checkNLargestObjects: 1,
windowStride: 4,
hogPadding: 4,
hogScale: 1.05,
hogHitThreshold: 0,
nonMaxSuppressionThreshold: .65
}
}
]
}
// MUST MATCH config-app.js