blob: 7e7b3c2c8bf3701ce036fad63a23d845d7602223 (
plain)
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
56double scaleX, scaleY;
/* scaling of the noise compared to the native sensor mode */
double noiseFactor;
/* line time */
libcamera::utils::Duration lineLength;
/* any camera transform *not* reflected already in the camera tuning */
libcamera::Transform transform;
/* minimum and maximum fame lengths in units of lines */
uint32_t minFrameLength, maxFrameLength;
/* sensitivity of this mode */
double sensitivity;
};
|