forked from raspberrypi/rpicam-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson_options.txt
45 lines (37 loc) · 1.28 KB
/
meson_options.txt
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
option('enable_libav',
type : 'feature',
value : 'auto',
description : 'Enable the libav encoder for video/audio capture')
option('enable_drm',
type : 'feature',
value : 'auto',
description : 'Enable DRM preview window support')
option('enable_egl',
type : 'feature',
value : 'auto',
description : 'Enable EGL preview window support')
option('enable_qt',
type : 'feature',
value : 'auto',
description : 'Enable QT preview window support')
option('enable_opencv',
type : 'feature',
value : 'disabled',
description : 'Enable OpenCV postprocessing support')
option('enable_tflite',
type : 'feature',
value : 'disabled',
description : 'Enable Tensorflow Lite postprocessing support')
option('neon_flags',
type : 'combo',
choices: ['arm64', 'armv8-neon', 'auto'],
value : 'auto',
description : 'User selectable arm-neon optimisation flags')
option('enable_hailo',
type : 'feature',
value : 'auto',
description : 'Enable Hailo postprocessing support')
option('download_hailo_models',
type : 'boolean',
value : true,
description : 'Download and install the Hailo postprocessing models')