NVIDIA DRIVE OS Linux SDK API Reference

5.2.0 Release
For Test and Development only
nvsipl::INvSIPLCamera Class Referenceabstract

Detailed Description

Defines public data structures and describes the interfaces for NvSIPLCamera.

Definition at line 57 of file NvSIPLCamera.hpp.

Public Member Functions

virtual SIPLStatus SetPlatformCfg (const PlatformCfg *platformCfg)=0
 Sets a platform configuration. More...
 
virtual SIPLStatus SetPipelineCfg (std::uint32_t index, const NvSIPLPipelineCfg &pipelineCfg)=0
 Sets a pipeline configuration. More...
 
virtual SIPLStatus SetPipelineCfg (std::uint32_t index, const NvSIPLPipelineConfiguration &pipelineCfg, NvSIPLPipelineQueues &queues)=0
 Sets a pipeline configuration. More...
 
virtual SIPLStatus RegisterAutoControlPlugin (std::uint32_t index, PluginType type, ISiplControlAuto *autoControl, const std::vector< std::uint8_t > &blob)=0
 Register Auto Control plugin to be used for specific pipeline. More...
 
virtual SIPLStatus Init (void)=0
 Initializes NvSIPL Camera for the selected platform configuration. More...
 
virtual SIPLStatus GetImageAttributes (std::uint32_t index, INvSIPLClient::ConsumerDesc::OutputType outType, NvSIPLImageAttr &imageAttr)=0
 Gets image attributes. More...
 
virtual SIPLStatus ReadEEPROMData (const std::uint32_t index, const std::uint16_t address, const std::uint32_t length, std::uint8_t *const buffer)=0
 Read from an EEPROM in a camera module. More...
 
virtual DevBlkCDIDevice * GetE2PHandle (std::uint32_t index)=0
 Get EEPROM CDI handle. More...
 
virtual SIPLStatus RegisterImageGroups (std::uint32_t index, const std::vector< NvMediaImageGroup * > &imageGroups)=0
 Registers image groups. More...
 
virtual SIPLStatus RegisterImages (std::uint32_t index, INvSIPLClient::ConsumerDesc::OutputType outType, const std::vector< NvMediaImage * > &images)=0
 Registers images. More...
 
virtual SIPLStatus Start (void)=0
 Starts NvSIPL Camera for the selected platform configuration. More...
 
virtual SIPLStatus Stop (void)=0
 Stops NvSIPL Camera for the selected platform configuration. More...
 
virtual SIPLStatus Deinit (void)=0
 Deinitializes NvSIPL Camera for the selected platform configuration. More...
 
virtual SIPLStatus RecoverLink (std::uint32_t index)=0
 Attempts to recover a given link. More...
 
virtual SIPLStatus ToggleLED (std::uint32_t index, bool enable)=0
 Control the LED on the associated camera module. More...
 
virtual ~INvSIPLCamera (void)=default
 Default destructor. More...
 
virtual SIPLStatus FillNvSciSyncAttrList (std::uint32_t index, INvSIPLClient::ConsumerDesc::OutputType outType, NvSciSyncAttrList attrList, NvMediaNvSciSyncClientType clientType)=0
 Fills an NvSciSyncAttrList. More...
 
virtual SIPLStatus RegisterNvSciSyncObj (std::uint32_t index, INvSIPLClient::ConsumerDesc::OutputType outType, NvMediaNvSciSyncObjType syncobjtype, NvSciSyncObj syncobj)=0
 Register an NvSciSyncObj. More...
 
virtual SIPLStatus SetNvSciSyncObjForEOF (std::uint32_t index, INvSIPLClient::ConsumerDesc::OutputType outType, NvSciSyncObj syncobj)=0
 Set the EOF NvSciSyncObj. More...
 

Static Public Member Functions

static std::unique_ptr< INvSIPLCameraGetInstance (void)
 Gets a handle to an INvSIPLCamera instance. More...
 

Constructor & Destructor Documentation

◆ ~INvSIPLCamera()

virtual nvsipl::INvSIPLCamera::~INvSIPLCamera ( void  )
virtualdefault

Default destructor.

Member Function Documentation

◆ Deinit()

virtual SIPLStatus nvsipl::INvSIPLCamera::Deinit ( void  )
pure virtual

Deinitializes NvSIPL Camera for the selected platform configuration.

The method internally deinitializes the camera module(s) and deserializer for each device block in the selected platform configuration and deinitializes and destroys the image processing pipelines.

Any registered images are automatically deregistered and can be safely destroyed.

This method must be called after Stop().

Returns
SIPLStatus the completion status of the operation.

◆ FillNvSciSyncAttrList()

virtual SIPLStatus nvsipl::INvSIPLCamera::FillNvSciSyncAttrList ( std::uint32_t  index,
INvSIPLClient::ConsumerDesc::OutputType  outType,
NvSciSyncAttrList  attrList,
NvMediaNvSciSyncClientType  clientType 
)
pure virtual

Fills an NvSciSyncAttrList.

The method can be used to fetch the NvSciSync attributes required for compatiblility with the underlying image processing pipelines.

If using NvSci, this method must be called after Init() and before RegisterNvSciSyncObj().

Parameters
[in]indexThe ID of the sensor.
[in]outTypenvsipl::INvSIPLClient::ConsumerDesc::OutputType.
[out]attrListNvSciSyncAttrList to be filled.
[in]clientTypeWaiter, signaler, or both.
Returns
SIPLStatus the completion status of the operation.

◆ GetE2PHandle()

virtual DevBlkCDIDevice* nvsipl::INvSIPLCamera::GetE2PHandle ( std::uint32_t  index)
pure virtual

Get EEPROM CDI handle.

This method can be used to get the EEPROM CDI handle. This method can only be called after Init() but before Start().

WARNING: This API will be deprecated in an imminent future release in favour of ReadEEPROMData().

Parameters
[in]indexThe ID of the sensor.
Returns
a pointer to the EEPROM CDI handle.

◆ GetImageAttributes()

virtual SIPLStatus nvsipl::INvSIPLCamera::GetImageAttributes ( std::uint32_t  index,
INvSIPLClient::ConsumerDesc::OutputType  outType,
NvSIPLImageAttr imageAttr 
)
pure virtual

Gets image attributes.

The method can be used to get the attributes of the images to be used with the image processing pipeline. The user must reconcile the attributes returned by this function with the attributes required by the downstream consumers of the output of the pipeline and allocate the images.

This method must be called after Init() but before Start().

Parameters
[in]indexThe ID of the sensor.
[in]outTypenvsipl::INvSIPLClient::ConsumerDesc::OutputType.
[out]imageAttrReference to the image attributes structure.
Returns
SIPLStatus the completion status of the operation.

◆ GetInstance()

static std::unique_ptr<INvSIPLCamera> nvsipl::INvSIPLCamera::GetInstance ( void  )
static

Gets a handle to an INvSIPLCamera instance.

Static function to create an instance of the implementation class and return the handle. The object is automatically destroyed when the variable holding the return value goes out of scope.

Returns
a pointer to an INvSIPLCamera instance.

◆ Init()

virtual SIPLStatus nvsipl::INvSIPLCamera::Init ( void  )
pure virtual

Initializes NvSIPL Camera for the selected platform configuration.

The method internally initializes the camera module(s) and deserializer for each device block in the selected platform configuration and creates and initializes the image processing pipelines based on the number and type of the consumers set via SetPipelineCfg.

This method must be called after SetPipelineCfg() but before RegisterImageGroups().

Returns
SIPLStatus the completion status of the operation.

◆ ReadEEPROMData()

virtual SIPLStatus nvsipl::INvSIPLCamera::ReadEEPROMData ( const std::uint32_t  index,
const std::uint16_t  address,
const std::uint32_t  length,
std::uint8_t *const  buffer 
)
pure virtual

Read from an EEPROM in a camera module.

This method can be used to perform data reads from an EEPROM in a camera module. This method can only be called after Init() but before Start().

Parameters
[in]indexThe ID of the sensor to which the EEPROM is associated.
[in]addressThe start address to read from in the EEPROM.
[in]lengthContiguous size of data to be read. [byte]
[out]bufferBuffer that EEPROM data is to be written into, must be at least size length.
Returns
SIPLStatus. The completion status of the operation.

◆ RecoverLink()

virtual SIPLStatus nvsipl::INvSIPLCamera::RecoverLink ( std::uint32_t  index)
pure virtual

Attempts to recover a given link.

The method tries to recover a link that has failed.

If this method is called on a link that has not failed, nothing will happen.

This method should only be called after Start() and before Stop().

Parameters
[in]indexThe ID of the sensor.
Returns
SIPLStatus the completion status of the operation.

◆ RegisterAutoControlPlugin()

virtual SIPLStatus nvsipl::INvSIPLCamera::RegisterAutoControlPlugin ( std::uint32_t  index,
PluginType  type,
ISiplControlAuto autoControl,
const std::vector< std::uint8_t > &  blob 
)
pure virtual

Register Auto Control plugin to be used for specific pipeline.

This method must be called for every pipeline with ISP output enabled. This function must be called after RegisterImages() but before Start().

Parameters
[in]indexThe ID of the sensor.
[in]typePlugin type.
[in]autoControlISiplControlAuto Handle to plugin implementation.
[in]blobReference to binary blob containing the ISP configuration.
Note
Support for registering more than one auto control plugin is deprecated and will be removed in the future release.
Returns
SIPLStatus the completion status of the operation.

◆ RegisterImageGroups()

virtual SIPLStatus nvsipl::INvSIPLCamera::RegisterImageGroups ( std::uint32_t  index,
const std::vector< NvMediaImageGroup * > &  imageGroups 
)
pure virtual

Registers image groups.

The method can be used to register the NvMedia image groups to be used within the image processing pipelines. NvMediaImageGroup serve as the output of ICP and input to ISP.

This method must be called after Init() but before Start() and if ISP output is enabled also before RegisterImages().

Parameters
[in]indexThe ID of the sensor.
[in]imageGroupsVector of NvMediaImageGroup pointers to be registered.
Returns
SIPLStatus the completion status of the operation.

◆ RegisterImages()

virtual SIPLStatus nvsipl::INvSIPLCamera::RegisterImages ( std::uint32_t  index,
INvSIPLClient::ConsumerDesc::OutputType  outType,
const std::vector< NvMediaImage * > &  images 
)
pure virtual

Registers images.

The method can be used to register the images to be used within the image processing pipelines. NvMediaImage serve as the output of ISP.

If ISP output is enabled, this method must be called after RegisterImageGroups() but before RegisterAutoControlPlugin().

Parameters
[in]indexThe ID of the sensor.
[in]outTypenvsipl::INvSIPLClient::ConsumerDesc::OutputType, can be ISP0 or ISP1.
[in]imagesVector of NvMediaImage pointers to be registered.
Returns
SIPLStatus the completion status of the operation.

◆ RegisterNvSciSyncObj()

virtual SIPLStatus nvsipl::INvSIPLCamera::RegisterNvSciSyncObj ( std::uint32_t  index,
INvSIPLClient::ConsumerDesc::OutputType  outType,
NvMediaNvSciSyncObjType  syncobjtype,
NvSciSyncObj  syncobj 
)
pure virtual

Register an NvSciSyncObj.

If using NvSci, this method must be called after FillNvSciSyncAttrList() and before SetNvSciSyncObjForEOF().

Parameters
[in]indexThe ID of the sensor.
[in]outTypenvsipl::INvSIPLClient::ConsumerDesc::OutputType.
[in]syncobjtypePresync, EOF sync, or presync and EOF.
[in]syncobjNvSciSyncObj to be registered.
Returns
SIPLStatus the completion status of the operation.
Note
Support for registering more than one NvSciSyncObj of type NVMEDIA_EOFSYNCOBJ is deprecated and will be removed in a future release.

◆ SetNvSciSyncObjForEOF()

virtual SIPLStatus nvsipl::INvSIPLCamera::SetNvSciSyncObjForEOF ( std::uint32_t  index,
INvSIPLClient::ConsumerDesc::OutputType  outType,
NvSciSyncObj  syncobj 
)
pure virtual

Set the EOF NvSciSyncObj.

Set the engine's current EOF NvSciSync object.

If using NvSci, this method must be called after RegisterNvSciSyncObj() and before Start().

Parameters
[in]indexThe ID of the sensor.
[in]outTypenvsipl::INvSIPLClient::ConsumerDesc::OutputType.
[in]syncobjNvSciSyncObj to be registered.
Returns
SIPLStatus the completion status of the operation.
Deprecated:
This method is deprecated and will be removed in a future release.

◆ SetPipelineCfg() [1/2]

virtual SIPLStatus nvsipl::INvSIPLCamera::SetPipelineCfg ( std::uint32_t  index,
const NvSIPLPipelineCfg pipelineCfg 
)
pure virtual

Sets a pipeline configuration.

The method sets a camera pipeline configuration. NvSIPLCamera uses the information in the pipeline configuration to initialize the Pipeline Manager. This function must be called after SetPlatformCfg() but before Init().

Parameters
[in]indexThe ID of the sensor.
[in]pipelineCfgAn NvSIPLPipelineCfg to set.
Returns
SIPLStatus the completion status of the operation.
Deprecated:
This version of SetPipelineCfg() will be removed in a future release.

◆ SetPipelineCfg() [2/2]

virtual SIPLStatus nvsipl::INvSIPLCamera::SetPipelineCfg ( std::uint32_t  index,
const NvSIPLPipelineConfiguration pipelineCfg,
NvSIPLPipelineQueues queues 
)
pure virtual

Sets a pipeline configuration.

The method sets a camera pipeline configuration. NvSIPLCamera uses the information in the pipeline configuration to initialize the Pipeline Manager. This function must be called after SetPlatformCfg() but before Init().

Parameters
[in]indexThe ID of the sensor.
[in]pipelineCfgAn NvSIPLPipelineConfiguration to set.
[out]queuesThe queues that will deliver completed frames and events to the client.
Returns
SIPLStatus the completion status of the operation.

◆ SetPlatformCfg()

virtual SIPLStatus nvsipl::INvSIPLCamera::SetPlatformCfg ( const PlatformCfg platformCfg)
pure virtual

Sets a platform configuration.

The method sets a PlatformCfg camera platform configuration. NvSIPLCamera uses the information in the platform configuration to create the necessary DeviceBlock(s) and Pipeline Manager(s). This function must be called before SetPipelineCfg().

Parameters
[in]platformCfgPlatformCfg The external devices referenced in the platform configuration must be supported by the SIPL Device Block drivers.
Returns
SIPLStatus the completion status of the operation.

◆ Start()

virtual SIPLStatus nvsipl::INvSIPLCamera::Start ( void  )
pure virtual

Starts NvSIPL Camera for the selected platform configuration.

The method internally starts the streaming from sensors belonging to each device block in the selected platform configuration and starts the associated image processing pipelines.

This method must be called after RegisterImageGroups(), (if ISP output is enabled) RegisterImages(), and (if using NvSci) SetNvSciSyncObjForEOF().

Returns
SIPLStatus the completion status of the operation.

◆ Stop()

virtual SIPLStatus nvsipl::INvSIPLCamera::Stop ( void  )
pure virtual

Stops NvSIPL Camera for the selected platform configuration.

The method internally stops the streaming from sensors belonging to each device block in the selected platform configuration and stops the associated image processing pipelines.

This method must be called after Start().

Returns
SIPLStatus the completion status of the operation.

◆ ToggleLED()

virtual SIPLStatus nvsipl::INvSIPLCamera::ToggleLED ( std::uint32_t  index,
bool  enable 
)
pure virtual

Control the LED on the associated camera module.

The method tries to enable or disable the LED on the specific module.

This method is valid only if there is an LED on the camera module and it is controlled by the sensor.

This method should only be called after Start() and before Stop().

Parameters
[in]indexThe ID of the sensor.
[in]enableEnable or disable LED.
Returns
SIPLStatus the completion status of the operation.

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