Skip to main content
Version: v24.05

Access and Set Device Info

In this tutorial, we learn how to set device information with Aravis API.

Prerequisite

  • Aravis Python (included in SDK package)
  • PyGObject (included in SDK package)

Tutorial

We learned how to get device information with Aravis API in the previous tutorial.

Some of GenICam features, such as Gain and ExposureTime is writable, so let's change these values to control Camera.

Load required modules

The process of loading modules is exactly the same as in the last tutorial. See the detail in Access and Display Device Info.

Access to devices

The API of acess to devices is exactly the same as in the last tutorial. See the detail in Access and Display Device Info.

Get current values of the device

First of all, we want to know the current values of Gain and ExposureTime. As we learned in the previous tutorial, use get_float_feature_value to obtain camera information after opening a camera.

for i in range(num_device):
device = Aravis.Camera.new(Aravis.get_device_id(i)).get_device()
...
current_gain = device.get_float_feature_value("Gain")
current_exposuretime = device.get_float_feature_value("ExposureTime")
...
del device

Some examples of general keys defined in U3V devices are listed in the table below.

Feature NameDescriptionType
GainGain of the image sensorDouble
ExposureTimeExposure time of the image sensorDouble
tip

Those feature keys and types are defined in SFNC (Standard Features Naming Convention) by emva; however, some of the devices have their own unique features, keys or types. To know the all accessible features, use arv-tool-0.8. See the detail in List the available GenICam features.

Common names (example):

  • Instead of Gain, it may be GainRaw or GainAbs.
  • Instead of ExposureTime, it may be ExposureTimeBaseAbs or ExposureTimeRaw.

Common types (example):

  • Instead of get_float_feature_value, it may be get_integer_feature_value if the type of Gain or ExposureTime is Integer.
why it does not work

If arv-device-error-quark returns errors:

Set current values of the device

Now, let's update the Gain and ExposureTime value with API of get_float_feature_value as follows:

    new_gain = current_gain + 10.0
new_exposuretime = current_exposuretime + 10.0

device.set_float_feature_value("Gain", new_gain)
device.set_float_feature_value("ExposureTime", new_exposuretime)

To confirm if the values are actually updated, you can load the device info again.

    current_gain = device.get_float_feature_value("Gain")
current_exposuretime = device.get_float_feature_value("ExposureTime")

Close

Using the following function in Aravis can release resources that avoid memory leaks.

Aravis.shutdown()
tip

Instead of using Aravis Python API, you can also use arv-tool. See the detail in Tools from Aravis

Complete code

Complete code used in the tutorial is here.