libcamera
v0.4.0+139-39419ce4
Supporting cameras in Linux since 2019
|
A abstract camera sensor. More...
Public Member Functions | |
virtual | ~CameraSensor () |
Destroy a CameraSensor. | |
virtual const std::string & | model () const =0 |
Retrieve the sensor model name. More... | |
virtual const std::string & | id () const =0 |
Retrieve the sensor ID. More... | |
virtual const MediaEntity * | entity () const =0 |
Retrieve the sensor media entity. More... | |
virtual V4L2Subdevice * | device ()=0 |
Retrieve the camera sensor device. More... | |
virtual CameraLens * | focusLens ()=0 |
Retrieve the focus lens controller. More... | |
virtual const std::vector< unsigned int > & | mbusCodes () const =0 |
Retrieve the media bus codes supported by the camera sensor. More... | |
virtual std::vector< Size > | sizes (unsigned int mbusCode) const =0 |
Retrieve the supported frame sizes for a media bus code. More... | |
virtual Size | resolution () const =0 |
Retrieve the camera sensor resolution. More... | |
virtual V4L2SubdeviceFormat | getFormat (const std::vector< unsigned int > &mbusCodes, const Size &size, const Size maxSize=Size()) const =0 |
Retrieve the best sensor format for a desired output. More... | |
virtual int | setFormat (V4L2SubdeviceFormat *format, Transform transform=Transform::Identity)=0 |
Set the sensor output format. More... | |
virtual int | tryFormat (V4L2SubdeviceFormat *format) const =0 |
Try the sensor output format. More... | |
virtual int | applyConfiguration (const SensorConfiguration &config, Transform transform=Transform::Identity, V4L2SubdeviceFormat *sensorFormat=nullptr)=0 |
Apply a sensor configuration to the camera sensor. More... | |
virtual V4L2Subdevice::Stream | imageStream () const |
Retrieve the image source stream. More... | |
virtual std::optional< V4L2Subdevice::Stream > | embeddedDataStream () const |
Retrieve the embedded data source stream. More... | |
virtual V4L2SubdeviceFormat | embeddedDataFormat () const |
Retrieve the format on the embedded data stream. More... | |
virtual int | setEmbeddedDataEnabled (bool enable) |
Enable or disable the embedded data stream. More... | |
virtual const ControlList & | properties () const =0 |
Retrieve the camera sensor properties. More... | |
virtual int | sensorInfo (IPACameraSensorInfo *info) const =0 |
Assemble and return the camera sensor info. More... | |
virtual Transform | computeTransform (Orientation *orientation) const =0 |
Compute the Transform that gives the requested orientation. More... | |
virtual BayerFormat::Order | bayerOrder (Transform t) const =0 |
Compute the Bayer order that results from the given Transform. More... | |
virtual const ControlInfoMap & | controls () const =0 |
Retrieve the supported V4L2 controls and their information. More... | |
virtual ControlList | getControls (const std::vector< uint32_t > &ids)=0 |
Read V4L2 controls from the sensor. More... | |
virtual int | setControls (ControlList *ctrls)=0 |
Write V4L2 controls to the sensor. More... | |
virtual const std::vector< controls::draft::TestPatternModeEnum > & | testPatternModes () const =0 |
Retrieve all the supported test pattern modes of the camera sensor The test pattern mode values correspond to the controls::TestPattern control. More... | |
virtual int | setTestPatternMode (controls::draft::TestPatternModeEnum mode)=0 |
Set the test pattern mode for the camera sensor. More... | |
virtual const CameraSensorProperties::SensorDelays & | sensorDelays ()=0 |
Fetch the sensor delay values. More... | |
A abstract camera sensor.
The CameraSensor class eases handling of sensors for pipeline handlers by hiding the details of the kernel API and caching sensor information.
|
pure virtual |
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.
|
pure virtual |
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.
|
pure virtual |
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.
|
pure virtual |
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.
|
pure virtual |
Retrieve the camera sensor device.
|
virtual |
Retrieve the format on the embedded data stream.
When an embedded data stream is available, this function returns the corresponding format on the sensor's source pad. The format may vary with the image stream format, and should therefore be retrieved after configuring the image stream.
If the sensor doesn't support embedded data, this function returns a default-constructed format.
|
virtual |
Retrieve the embedded data source stream.
Some sensors produce embedded data in a stream separate from the image stream. This function indicates if the sensor supports this feature by returning the embedded data stream on the sensor's source pad if available, or an std::optional<> without a value otheriwse.
|
pure virtual |
Retrieve the sensor media entity.
|
pure virtual |
Retrieve the focus lens controller.
|
pure virtual |
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.
|
pure virtual |
Retrieve the best sensor format for a desired output.
[in] | mbusCodes | The list of acceptable media bus codes |
[in] | size | The desired size |
[in] | maxSize | The maximum 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.
|
pure virtual |
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.
|
virtual |
Retrieve the image source stream.
Sensors that produce multiple streams do not guarantee that the image stream is always assigned number 0. This function allows callers to retrieve the image stream on the sensor's source pad, in order to configure the receiving side accordingly.
|
pure virtual |
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).
|
pure virtual |
Retrieve the sensor model name.
The sensor model name is a free-formed string that uniquely identifies the sensor model.
|
pure virtual |
Retrieve the camera sensor properties.
|
pure virtual |
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.
|
pure virtual |
Fetch the sensor delay values.
This function retrieves the delays that the sensor applies to controls. If the static properties database doesn't specifiy control delay values for the sensor, default delays that may be suitable are returned and a warning is logged.
|
pure virtual |
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.
|
pure virtual |
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 |
|
virtual |
Enable or disable the embedded data stream.
[in] | enable | True to enable the embedded data stream, false to disable it |
For sensors that support embedded data, this function enables or disables generation of embedded data. Some of such sensors always produce embedded data, in which case this function return -EISCONN if the caller attempts to disable embedded data.
If the sensor doesn't support embedded data, this function returns 0 when enable is false, and -ENOSTR otherwise.
|
pure virtual |
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.
|
pure virtual |
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.
|
pure virtual |
Retrieve the supported frame sizes for a media bus code.
[in] | mbusCode | The media bus code for which sizes are requested |
|
pure virtual |
Retrieve all the supported test pattern modes of the camera sensor The test pattern mode values correspond to the controls::TestPattern control.
|
pure virtual |
Try the sensor output format.
[in] | format | The desired sensor output format |
The ranges of any controls associated with the sensor are not updated.