libcamera  v0.2.0+135-3cb20bc2
Supporting cameras in Linux since 2019
Public Types | Public Member Functions | List of all members
libcamera::ipa::Algorithm< _Module > Class Template Reference

The base class for all IPA algorithms. More...

Inheritance diagram for libcamera::ipa::Algorithm< _Module >:
Inheritance graph
[legend]

Public Types

using Module = _Module
 The IPA module type for this class of algorithms.
 

Public Member Functions

virtual int init ([[maybe_unused]] typename Module::Context &context, [[maybe_unused]] const YamlObject &tuningData)
 Initialize the Algorithm with tuning data. More...
 
virtual int configure ([[maybe_unused]] typename Module::Context &context, [[maybe_unused]] const typename Module::Config &configInfo)
 Configure the Algorithm given an IPAConfigInfo. More...
 
virtual void queueRequest ([[maybe_unused]] typename Module::Context &context, [[maybe_unused]] const uint32_t frame, [[maybe_unused]] typename Module::FrameContext &frameContext, [[maybe_unused]] const ControlList &controls)
 Provide control values to the algorithm. More...
 
virtual void prepare ([[maybe_unused]] typename Module::Context &context, [[maybe_unused]] const uint32_t frame, [[maybe_unused]] typename Module::FrameContext &frameContext, [[maybe_unused]] typename Module::Params *params)
 Fill the params buffer with ISP processing parameters for a frame. More...
 
virtual void process ([[maybe_unused]] typename Module::Context &context, [[maybe_unused]] const uint32_t frame, [[maybe_unused]] typename Module::FrameContext &frameContext, [[maybe_unused]] const typename Module::Stats *stats, [[maybe_unused]] ControlList &metadata)
 Process ISP statistics, and run algorithm operations. More...
 

Detailed Description

template<typename _Module>
class libcamera::ipa::Algorithm< _Module >

The base class for all IPA algorithms.

Template Parameters
ModuleThe IPA module type for this class of algorithms

The Algorithm class defines a standard interface for IPA algorithms compatible with the Module. By abstracting algorithms, it makes possible the implementation of generic code to manage algorithms regardless of their specific type.

To specialize the Algorithm class template, an IPA module shall specialize the Module class template with module-specific context and configuration types, and pass the specialized Module class as the Module template argument.

Member Function Documentation

◆ configure()

template<typename _Module >
libcamera::ipa::Algorithm< _Module >::configure ( [[maybe_unused] ] typename Module::Context context,
[[maybe_unused] ] const typename Module::Config configInfo 
)
inlinevirtual

Configure the Algorithm given an IPAConfigInfo.

Parameters
[in]contextThe shared IPA context
[in]configInfoThe IPA configuration data, received from the pipeline handler

Algorithms may implement a configure operation to pre-calculate parameters prior to commencing streaming.

Configuration state may be stored in the IPASessionConfiguration structure of the IPAContext.

Returns
0 if successful, an error code otherwise

◆ init()

template<typename _Module >
libcamera::ipa::Algorithm< _Module >::init ( [[maybe_unused] ] typename Module::Context context,
[[maybe_unused] ] const YamlObject tuningData 
)
inlinevirtual

Initialize the Algorithm with tuning data.

Parameters
[in]contextThe shared IPA context
[in]tuningDataThe tuning data for the algorithm

This function is called once, when the IPA module is initialized, to initialize the algorithm. The tuningData YamlObject contains the tuning data for algorithm.

Returns
0 if successful, an error code otherwise

◆ prepare()

template<typename _Module >
libcamera::ipa::Algorithm< _Module >::prepare ( [[maybe_unused] ] typename Module::Context context,
[[maybe_unused] ] const uint32_t  frame,
[[maybe_unused] ] typename Module::FrameContext frameContext,
[[maybe_unused] ] typename Module::Params params 
)
inlinevirtual

Fill the params buffer with ISP processing parameters for a frame.

Parameters
[in]contextThe shared IPA context
[in]frameThe frame context sequence number
[in]frameContextThe FrameContext for this frame
[out]paramsThe ISP specific parameters

This function is called for every frame when the camera is running before it is processed by the ISP to prepare the ISP processing parameters for that frame.

Algorithms shall fill in the parameter structure fields appropriately to configure the ISP processing blocks that they are responsible for. This includes setting fields and flags that enable those processing blocks.

◆ process()

template<typename _Module >
libcamera::ipa::Algorithm< _Module >::process ( [[maybe_unused] ] typename Module::Context context,
[[maybe_unused] ] const uint32_t  frame,
[[maybe_unused] ] typename Module::FrameContext frameContext,
[[maybe_unused] ] const typename Module::Stats stats,
[[maybe_unused] ] ControlList metadata 
)
inlinevirtual

Process ISP statistics, and run algorithm operations.

Parameters
[in]contextThe shared IPA context
[in]frameThe frame context sequence number
[in]frameContextThe current frame's context
[in]statsThe IPA statistics and ISP results
[out]metadataMetadata for the frame, to be filled by the algorithm

This function is called while camera is running for every frame processed by the ISP, to process statistics generated from that frame by the ISP. Algorithms shall use this data to run calculations, update their state accordingly, and fill the frame metadata.

Processing shall not take an undue amount of time, and any extended or computationally expensive calculations or operations must be handled asynchronously in a separate thread.

Algorithms can store state in their respective IPAFrameContext structures, and reference state from the IPAFrameContext of other algorithms.

Todo:
Historical data may be required as part of the processing. Either the previous frame, or the IPAFrameContext state of the frame that generated the statistics for this operation may be required for some advanced algorithms to prevent oscillations or support control loops correctly. Only a single IPAFrameContext is available currently, and so any data stored may represent the results of the previously completed operations.

Care shall be taken to ensure the ordering of access to the information such that the algorithms use up to date state as required.

◆ queueRequest()

template<typename _Module >
libcamera::ipa::Algorithm< _Module >::queueRequest ( [[maybe_unused] ] typename Module::Context context,
[[maybe_unused] ] const uint32_t  frame,
[[maybe_unused] ] typename Module::FrameContext frameContext,
[[maybe_unused] ] const ControlList controls 
)
inlinevirtual

Provide control values to the algorithm.

Parameters
[in]contextThe shared IPA context
[in]frameThe frame number to apply the control values
[in]frameContextThe current frame's context
[in]controlsThe list of user controls

This function is called for each request queued to the camera. It provides the controls stored in the request to the algorithm. The frame number is the Request sequence number and identifies the desired corresponding frame to target for the controls to take effect.

Algorithms shall read the applicable controls and store their value for later use during frame processing.


The documentation for this class was generated from the following files: