Back to Aurora Vision Library Lite website

You are here: Start » Camera Support » XIMEA » XiApi_GetParamFloat

XiApi_GetParamFloat


Header: ThirdPartySdk.h
Namespace: avl

Gets parameter of type Float from XIMEA device.

Syntax

C++
Python
 
void avl::XiApi_GetParamFloat
(
	XIAPIState& ioState,
	const atl::Optional<atl::String>& inDeviceID,
	const atl::String& inParameter,
	float& outValue
)

Parameters

Name Type Default Description
Input will be modified ioState XIAPIState& Object used to maintain state of the function.
Input value inDeviceID const Optional<String>& NIL Camera chip ID or camera index
Input value inParameter const String& Parameter name
Output value outValue float& Received value

Remarks

The value of the parameter is retrieved in every filter iteration.

The possible values (strings) of inParameter input can be found in the XIMEA documentation at the following website .

Warning:All tools applied to a specific device or file should be managed within a single thread to ensure centralized tracking, traceability, and consistency throughout the process.

Multithreaded environment

This function is not guaranteed to be thread-safe. When used in multithreaded environment, it has to be manually synchronized.

See Also