libcamera
v0.3.1+12-19bbca3c
Supporting cameras in Linux since 2019
|
A camera sensor based on V4L2 subdevices. More...
Public Member Functions | |
CameraSensor (const MediaEntity *entity) | |
Construct a CameraSensor. More... | |
~CameraSensor () | |
Destroy a CameraSensor. | |
int | init () |
Initialize the camera sensor instance. More... | |
const std::string & | model () const |
Retrieve the sensor model name. More... | |
const std::string & | id () const |
Retrieve the sensor ID. More... | |
const MediaEntity * | entity () const |
Retrieve the sensor media entity. More... | |
V4L2Subdevice * | device () |
Retrieve the camera sensor device. More... | |
CameraLens * | focusLens () |
Retrieve the focus lens controller. More... | |
const std::vector< unsigned int > & | mbusCodes () const |
Retrieve the media bus codes supported by the camera sensor. More... | |
std::vector< Size > | sizes (unsigned int mbusCode) const |
Retrieve the supported frame sizes for a media bus code. More... | |
Size | resolution () const |
Retrieve the camera sensor resolution. More... | |
V4L2SubdeviceFormat | getFormat (const std::vector< unsigned int > &mbusCodes, const Size &size) const |
Retrieve the best sensor format for a desired output. More... | |
int | setFormat (V4L2SubdeviceFormat *format, Transform transform=Transform::Identity) |
Set the sensor output format. More... | |
int | tryFormat (V4L2SubdeviceFormat *format) const |
Try the sensor output format. More... | |
int | applyConfiguration (const SensorConfiguration &config, Transform transform=Transform::Identity, V4L2SubdeviceFormat *sensorFormat=nullptr) |
Apply a sensor configuration to the camera sensor. More... | |
const ControlList & | properties () const |
Retrieve the camera sensor properties. More... | |
int | sensorInfo (IPACameraSensorInfo *info) const |
Assemble and return the camera sensor info. More... | |
Transform | computeTransform (Orientation *orientation) const |
Compute the Transform that gives the requested orientation. More... | |
BayerFormat::Order | bayerOrder (Transform t) const |
Compute the Bayer order that results from the given Transform. More... | |
const ControlInfoMap & | controls () const |
Retrieve the supported V4L2 controls and their information. More... | |
ControlList | getControls (const std::vector< uint32_t > &ids) |
Read V4L2 controls from the sensor. More... | |
int | setControls (ControlList *ctrls) |
Write V4L2 controls to the sensor. More... | |
const std::vector< controls::draft::TestPatternModeEnum > & | testPatternModes () const |
Retrieve all the supported test pattern modes of the camera sensor The test pattern mode values correspond to the controls::TestPattern control. More... | |
int | setTestPatternMode (controls::draft::TestPatternModeEnum mode) |
Set the test pattern mode for the camera sensor. More... | |
Protected Member Functions | |
std::string | logPrefix () const override |
Retrieve a string to be prefixed to the log message. More... | |
Protected Member Functions inherited from libcamera::Loggable | |
LogMessage | _log (const LogCategory *category, LogSeverity severity, const char *fileName=__builtin_FILE(), unsigned int line=__builtin_LINE()) const |
Create a temporary LogMessage object to log a message. More... | |
A camera sensor based on V4L2 subdevices.
The CameraSensor class eases handling of sensors for pipeline handlers by hiding the details of the V4L2 subdevice kernel API and caching sensor information.
The implementation is currently limited to sensors that expose a single V4L2 subdevice with a single pad. It will be extended to support more complex devices as the needs arise.
|
explicit |
Construct a CameraSensor.
[in] | entity | The media entity backing the camera sensor |
Once constructed the instance must be initialized with init().
int libcamera::CameraSensor::applyConfiguration | ( | const SensorConfiguration & | config, |
Transform | transform = Transform::Identity , |
||
V4L2SubdeviceFormat * | sensorFormat = nullptr |
||
) |
Apply a sensor configuration to the camera sensor.
[in] | config | The sensor configuration |
[in] | transform | The transform to be applied on the sensor. Defaults to Identity |
[out] | sensorFormat | Format applied to the sensor (optional) |
Apply to the camera sensor the configuration config.
BayerFormat::Order libcamera::CameraSensor::bayerOrder | ( | Transform | t | ) | const |
Compute the Bayer order that results from the given Transform.
[in] | t | The Transform to apply to the sensor |
Some sensors change their Bayer order when they are h-flipped or v-flipped. This function computes and returns the Bayer order that would result from the given transform applied to the sensor.
This function is valid only when the sensor produces raw Bayer formats.
Transform libcamera::CameraSensor::computeTransform | ( | Orientation * | orientation | ) | const |
Compute the Transform that gives the requested orientation.
[in,out] | orientation | The desired image orientation |
This function computes the Transform that the pipeline handler should apply to the CameraSensor to obtain the requested orientation.
The intended caller of this function is the validate() implementation of pipeline handlers, that pass in the application requested CameraConfiguration::orientation and obtain a Transform to apply to the camera sensor, likely at configure() time.
If the requested orientation cannot be obtained, the orientation parameter is adjusted to report the current image orientation and Transform::Identity is returned.
If the requested orientation can be obtained, the function computes a Transform and does not adjust orientation.
Pipeline handlers are expected to verify if orientation has been adjusted by this function and set the CameraConfiguration::status to Adjusted accordingly.
const ControlInfoMap & libcamera::CameraSensor::controls | ( | ) | const |
Retrieve the supported V4L2 controls and their information.
Control information is updated automatically to reflect the current sensor configuration when the setFormat() function is called, without invalidating any iterator on the ControlInfoMap.
|
inline |
Retrieve the camera sensor device.
|
inline |
Retrieve the sensor media entity.
|
inline |
Retrieve the focus lens controller.
ControlList libcamera::CameraSensor::getControls | ( | const std::vector< uint32_t > & | ids | ) |
Read V4L2 controls from the sensor.
[in] | ids | The list of controls to read, specified by their ID |
This function reads the value of all controls contained in ids, and returns their values as a ControlList. The control identifiers are defined by the V4L2 specification (V4L2_CID_*).
If any control in ids is not supported by the device, is disabled (i.e. has the V4L2_CTRL_FLAG_DISABLED flag set), or if any other error occurs during validation of the requested controls, no control is read and this function returns an empty control list.
V4L2SubdeviceFormat libcamera::CameraSensor::getFormat | ( | const std::vector< unsigned int > & | mbusCodes, |
const Size & | size | ||
) | const |
Retrieve the best sensor format for a desired output.
[in] | mbusCodes | The list of acceptable media bus codes |
[in] | size | The desired size |
Media bus codes are selected from mbusCodes, which lists all acceptable codes in decreasing order of preference. Media bus codes supported by the sensor but not listed in mbusCodes are ignored. If none of the desired codes is supported, it returns an error.
size indicates the desired size at the output of the sensor. This function selects the best media bus code and size supported by the sensor according to the following criteria.
When multiple media bus codes can produce the same size, the code at the lowest position in mbusCodes is selected.
The use of this function is optional, as the above criteria may not match the needs of all pipeline handlers. Pipeline handlers may implement custom sensor format selection when needed.
The returned sensor output format is guaranteed to be acceptable by the setFormat() function without any modification.
|
inline |
Retrieve the sensor ID.
The sensor ID is a free-form string that uniquely identifies the sensor in the system. The ID satisfies the requirements to be used as a camera ID.
int libcamera::CameraSensor::init | ( | ) |
Initialize the camera sensor instance.
This function performs the initialisation steps of the CameraSensor that may fail. It shall be called once and only once after constructing the instance.
|
overrideprotectedvirtual |
Retrieve a string to be prefixed to the log message.
This function allows classes inheriting from the Loggable class to extend the logger with an object-specific prefix output right before the log message contents.
Implements libcamera::Loggable.
|
inline |
Retrieve the media bus codes supported by the camera sensor.
Any Bayer formats are listed using the sensor's native Bayer order, that is, with the effect of V4L2_CID_HFLIP and V4L2_CID_VFLIP undone (where these controls exist).
|
inline |
Retrieve the sensor model name.
The sensor model name is a free-formed string that uniquely identifies the sensor model.
|
inline |
Retrieve the camera sensor properties.
Size libcamera::CameraSensor::resolution | ( | ) | const |
Retrieve the camera sensor resolution.
The camera sensor resolution is the active pixel area size, clamped to the maximum frame size the sensor can produce if it is smaller than the active pixel area.
int libcamera::CameraSensor::sensorInfo | ( | IPACameraSensorInfo * | info | ) | const |
Assemble and return the camera sensor info.
[out] | info | The camera sensor info |
This function fills info with information that describes the camera sensor and its current configuration. The information combines static data (such as the the sensor model or active pixel array size) and data specific to the current sensor configuration (such as the line length and pixel rate).
Sensor information is only available for raw sensors. When called for a YUV sensor, this function returns -EINVAL.
int libcamera::CameraSensor::setControls | ( | ControlList * | ctrls | ) |
Write V4L2 controls to the sensor.
[in] | ctrls | The list of controls to write |
This function writes the value of all controls contained in ctrls, and stores the values actually applied to the device in the corresponding ctrls entry. The control identifiers are defined by the V4L2 specification (V4L2_CID_*).
If any control in ctrls is not supported by the device, is disabled (i.e. has the V4L2_CTRL_FLAG_DISABLED flag set), is read-only, or if any other error occurs during validation of the requested controls, no control is written and this function returns -EINVAL.
If an error occurs while writing the controls, the index of the first control that couldn't be written is returned. All controls below that index are written and their values are updated in ctrls, while all other controls are not written and their values are not changed.
-EINVAL | One of the control is not supported or not accessible |
i | The index of the control that failed |
int libcamera::CameraSensor::setFormat | ( | V4L2SubdeviceFormat * | format, |
Transform | transform = Transform::Identity |
||
) |
Set the sensor output format.
[in] | format | The desired sensor output format |
[in] | transform | The transform to be applied on the sensor. Defaults to Identity. |
If flips are writable they are configured according to the desired Transform. Transform::Identity always corresponds to H/V flip being disabled if the controls are writable. Flips are set before the new format is applied as they can effectively change the Bayer pattern ordering.
The ranges of any controls associated with the sensor are also updated.
int libcamera::CameraSensor::setTestPatternMode | ( | controls::draft::TestPatternModeEnum | mode | ) |
Set the test pattern mode for the camera sensor.
[in] | mode | The test pattern mode |
The new mode is applied to the sensor if it differs from the active test pattern mode. Otherwise, this function is a no-op. Setting the same test pattern mode for every frame thus incurs no performance penalty.
std::vector< Size > libcamera::CameraSensor::sizes | ( | unsigned int | mbusCode | ) | const |
Retrieve the supported frame sizes for a media bus code.
[in] | mbusCode | The media bus code for which sizes are requested |
|
inline |
Retrieve all the supported test pattern modes of the camera sensor The test pattern mode values correspond to the controls::TestPattern control.
int libcamera::CameraSensor::tryFormat | ( | V4L2SubdeviceFormat * | format | ) | const |
Try the sensor output format.
[in] | format | The desired sensor output format |
The ranges of any controls associated with the sensor are not updated.