-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconstants.h
58 lines (53 loc) · 1.04 KB
/
constants.h
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
#ifndef CONSTANTS_H
#define CONSTANTS_H
#include <QString>
class CameraParameters
{
public:
CameraParameters():
targetip("192.168.1.1"),
targetport("5001"),
width("1280"),
height("720"),
bitrate("25000000"),
timeout("0"),
framerate("49"),
mode("auto"),
sharpness("80"),
brightness("50"),
saturation("50"),
// ISO("")
vstab("off"),
ev("off"),
exposure("auto"),
awb("auto"),
metering("average"),
hflip("off"),
vflip("off"),
drc("med")
{}
QString targetip,
targetport,
width,
height,
bitrate,
timeout,
framerate,
mode,
sharpness,
contrast,
brightness,
saturation,
// ISO,
vstab,
ev,
exposure,
awb,
metering,
hflip,
vflip,
// shutter,
// awbgains,
drc;
};
#endif // CONSTANTS_H