-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
71 lines (71 loc) · 2.22 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"application": {
"name": "VisionGuardApp",
"version": "1.1.0",
"organization": "GSoC 2024 OpenVINO Toolkit",
"identifier": "com.summerofcode.withgoogle.OpenVINO-Toolkit.VisionGuardApp"
},
"resources": {
"models_directory": "Resources/omz_models",
"icon_file": "Resources/vision-guard-removebg.png"
},
"camera": {
"usage_description": "VisionGuard requires camera access for gaze detection. Inference is done locally to ensure privacy."
},
"permissions": {
"apple_events": {
"usage_description": "VisionGuard may need to control other applications to provide a better user experience."
}
},
"file_associations": {
"extensions": ["vguard"],
"mime_type": "application/x-visionguard",
"description": "VisionGuard Document"
},
"system_requirements": {
"minimum_os_version": {
"macos": "10.13",
"windows": "10",
"linux": "Ubuntu 20.04"
}
},
"dependencies": {
"opencv": {
"components": ["core", "highgui", "videoio", "imgproc", "imgcodecs"]
},
"openvino": {
"components": ["Runtime"]
},
"qt": {
"version": "6",
"components": ["Core", "Widgets", "Multimedia", "MultimediaWidgets", "Gui", "Charts", "Network"]
}
},
"build": {
"cmake_minimum_version": "3.16",
"cpp_standard": "17",
"default_build_type": "Release"
},
"legal": {
"copyright": "© 2024 Inbasekaran Perumal. All rights reserved.",
"licenses": [
{
"name": "Apache License 2.0",
"applies_to": "Core application code (non-Qt parts)",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
},
{
"name": "GNU Lesser General Public License v3",
"applies_to": "Qt-related parts",
"url": "https://www.gnu.org/licenses/lgpl-3.0.en.html"
}
]
},
"acknowledgements": {
"mentors": [
"Dmitriy Pastushenkov",
"Ria Cheruvu"
],
"organization": "OpenVINO Toolkit"
}
}