-
Notifications
You must be signed in to change notification settings - Fork 8
/
requirements_extra.json
100 lines (100 loc) · 2.48 KB
/
requirements_extra.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
90
91
92
93
94
95
96
97
98
99
100
{
"features": {
"gpio": {
"description": [
"enables opsi.gpio module",
"cross platform",
"no effect unless on raspberry pi"
],
"packages": [
"colorzero==1.1",
"gpiozero==1.5.1"
]
},
"gpu": {
"description": [
"enables opsi.gpu",
"accelerated image processing",
"requires Nvidia GPU + CUDA toolkit",
"installations are varied, so there's no specified version"
],
"packages": [
"cupy"
]
},
"h264": {
"description": [
"h264 functionality in cameraserver",
"requires linux"
],
"packages": [
"upgraded-engineer==0.2.1"
]
},
"imutils": {
"description": [
"enables image rotation",
"requires opencv installed"
],
"packages": [
"imutils==0.5.3"
]
},
"opencv": {
"description": [
"all image processing",
"cross platform",
"linux: do not install if using distro python3-opencv 4.x"
],
"packages": [
"opencv-python==4.2.0.34"
]
},
"systemd": {
"description": [
"manage systemctl service",
"used in the deb packages, not needed for development",
"requires linux"
],
"packages": [
"pystemd==0.7.0"
]
},
"uvloop": {
"description": [
"general async speedup",
"requires linux"
],
"packages": [
"uvloop==0.14.0"
]
}
},
"overlays": {
"base": {
"add": [
"gpio",
"imutils",
"opencv"
],
"remove": []
},
"linux": {
"extends": "base",
"add": [
"h264",
"uvloop"
],
"remove": []
},
"packages": {
"extends": "linux",
"add": [
"systemd"
],
"remove": [
"opencv"
]
}
}
}