Skip to main content
Version: v24.05

Access and Display Device Info

In this tutorial, we learn how to get device information with aravis API.

Prerequisite

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

Tutorial

Load required modules

First of all, to load the PyGObject to use Aravis module, we need to add $SENSING_DEV_ROOT/bin (where you installed Sensing-Dev SDK).

import os
os.add_dll_directory(os.path.join(os.environ["SENSING_DEV_ROOT"], "bin"))

Now you import the module of Aravis with PyGObject.

import gi
gi.require_version("Aravis", "0.8")
from gi.repository import Aravis
why it does not work

When you see ImportError: DLL load failed while importing _gi: The specified module could not be found.

  • Environment variable SENSING_DEV_ROOT is not set appropriately.
  • Python version is not 3.11.

Access to devices

Now we are ready to use Aravis API. Let's start with updating the list of U3V devices that are connected to your host machine.

Aravis.update_device_list()

By updating the list, the following API should return the nubmer of the devices.

num_device = Aravis.get_n_devices()
why it does not work

If num_devices is 0, your device may have the following issues.

Access to device infomation

Out of num_device devices, create camera object by accessing ith device.

You can get string/intefer/float values of device information with API of get_*_feature_value as follows:

for i in range(num_device):
device = Aravis.Camera.new(Aravis.get_device_id(i)).get_device()

devicemodelname = device.get_string_feature_value("DeviceModelName")
width = device.get_integer_feature_value("Width")
...
del device

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

Feature NameDescriptionType
DeviceModelNameName of the deviceString
WidthWidth of the sensor imageInteger
HeightHeight of the sensor imageInteger
PayloadSizeSize of whole data transferred from sensorInteger
PixelFormatPixel Format of the sensor image dataString
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 or keys. To know the all accessible features, use arv-tool-0.8. See the detail in List the available GenICam features.

why it does not work

If arv-device-error-quark returns errors:

Display the values

    print("=== device {} information ===========================".format(i))
print("{0:20s} : {1}".format("Device Model Name", devicemodelname))
print("{0:20s} : {1}".format("Wdith", width))

Note that all the returned value of get_*_feature_value is a string.

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.