libcamera v0.4.0+5314-fc77c53d-nvm
Supporting cameras in Linux since 2019
Loading...
Searching...
No Matches
property_ids.h
Go to the documentation of this file.
1/* SPDX-License-Identifier: LGPL-2.1-or-later */
2/*
3 * Copyright (C) 2019, Google Inc.
4 *
5 * Properties ID list
6 *
7 * This file is auto-generated. Do not edit.
8 */
9
10#pragma once
11
12#include <array>
13#include <map>
14#include <stdint.h>
15#include <string>
16
17#include <libcamera/controls.h>
18
19namespace libcamera {
20
21namespace properties {
22
23extern const ControlIdMap properties;
24
25
26enum {
27 LOCATION = 1,
28 ROTATION = 2,
29 MODEL = 3,
30 UNIT_CELL_SIZE = 4,
31 PIXEL_ARRAY_SIZE = 5,
32 PIXEL_ARRAY_OPTICAL_BLACK_RECTANGLES = 6,
33 PIXEL_ARRAY_ACTIVE_AREAS = 7,
34 SCALER_CROP_MAXIMUM = 8,
35 SENSOR_SENSITIVITY = 9,
36 SYSTEM_DEVICES = 10,
37};
38
39
45extern const std::array<const ControlValue, 3> LocationValues;
46extern const std::map<std::string, int32_t> LocationNameValueMap;
47extern const Control<int32_t> Location;
48extern const Control<int32_t> Rotation;
49extern const Control<std::string> Model;
50extern const Control<Size> UnitCellSize;
51extern const Control<Size> PixelArraySize;
57
58namespace draft {
59
60#define LIBCAMERA_HAS_DRAFT_VENDOR_PROPERTIES
61
62
63enum {
64 COLOR_FILTER_ARRANGEMENT = 10001,
65};
66
67
69 RGGB = 0,
70 GRBG = 1,
71 GBRG = 2,
72 BGGR = 3,
73 RGB = 4,
74 MONO = 5,
75};
76extern const std::array<const ControlValue, 6> ColorFilterArrangementValues;
77extern const std::map<std::string, int32_t> ColorFilterArrangementNameValueMap;
79
80} /* namespace draft */
81
82} /* namespace properties */
83
84} /* namespace libcamera */
Describe a control and its intrinsic properties.
Definition controls.h:313
Framework to manage controls related to an object.
const std::map< std::string, int32_t > ColorFilterArrangementNameValueMap
Map of all ColorFilterArrangement supported value names (in std::string format) to value.
const std::array< const ControlValue, 6 > ColorFilterArrangementValues
List of all ColorFilterArrangement supported values.
const Control< int32_t > ColorFilterArrangement
The arrangement of color filters on sensor; represents the colors in the top-left 2x2 section of the ...
ColorFilterArrangementEnum
Supported ColorFilterArrangement values.
Definition property_ids.h:68
@ GBRG
GBRG Bayer pattern.
Definition property_ids.h:71
@ GRBG
GRBG Bayer pattern.
Definition property_ids.h:70
@ MONO
Sensor is not Bayer; output consists of a single colour channel.
Definition property_ids.h:74
@ RGB
Sensor is not Bayer; output has 3 16-bit values for each pixel, instead of just 1 16-bit value per pi...
Definition property_ids.h:73
@ RGGB
RGGB Bayer pattern.
Definition property_ids.h:69
@ BGGR
BGGR Bayer pattern.
Definition property_ids.h:72
const ControlIdMap properties
List of all supported libcamera properties.
Definition property_ids.cpp:844
const Control< std::string > Model
The model name shall to the extent possible describe the sensor. For most devices this is the model n...
LocationEnum
Supported Location values.
Definition property_ids.h:40
@ CameraLocationFront
The camera is mounted on the front side of the device, facing the user.
Definition property_ids.h:41
@ CameraLocationBack
The camera is mounted on the back side of the device, facing away from the user.
Definition property_ids.h:42
@ CameraLocationExternal
The camera is attached to the device in a way that allows it to be moved freely.
Definition property_ids.h:43
const Control< Span< const Rectangle > > PixelArrayOpticalBlackRectangles
The pixel array region(s) which contain optical black pixels considered valid for calibration purpose...
const std::array< const ControlValue, 3 > LocationValues
List of all Location supported values.
const Control< int32_t > Rotation
The camera physical mounting rotation. It is expressed as the angular difference in degrees between t...
const Control< Span< const int64_t > > SystemDevices
A list of integer values of type dev_t denoting the major and minor device numbers of the underlying ...
const Control< Rectangle > ScalerCropMaximum
The maximum valid rectangle for the controls::ScalerCrop control. This reflects the minimum mandatory...
const Control< Size > PixelArraySize
The camera sensor pixel array readable area vertical and horizontal sizes, in pixels.
const Control< float > SensorSensitivity
The relative sensitivity of the chosen sensor mode.
const std::map< std::string, int32_t > LocationNameValueMap
Map of all Location supported value names (in std::string format) to value.
const Control< Size > UnitCellSize
The pixel unit cell physical size, in nanometers.
const Control< Span< const Rectangle > > PixelArrayActiveAreas
The PixelArrayActiveAreas property defines the (possibly multiple and overlapping) portions of the ca...
const Control< int32_t > Location
Camera mounting location.
Top-level libcamera namespace.
Definition bound_method.h:15
std::unordered_map< unsigned int, const ControlId * > ControlIdMap
A map of numerical control ID to ControlId.
Definition controls.h:364