DvsenseDriver  1.0.3
The SDK for dvsense products.
Loading...
Searching...
No Matches
Software and SDK Installation

DVSense Driver and DVSense Insight

DVSense Driver and DVSense Insight are DVS camera development kits independently developed by DV Microvision.

DVSense Insight provides a GUI interface for operating DVS cameras, recording data, playback, and basic processing.

DVSense Driver provides developers with C++ driver and control interfaces for DVS cameras.

Download Links

System DVSense Driver DVSense Insight DvsenseToolBox
Windows 11 DvsenseDriver-Setup-1.0.3.exe Dvsense Insight-Setup-1.0.3.exe DvsenseToolBox-Setup-1.0.0.exe
Ubuntu 20.04/22.04 libDvsenseDriver-dev_1.0.3_Linux_x86_64.deb dvsenseinsight_1.0.3_amd64.deb
Ubuntu 24.04 libDvsenseDriver-dev_1.0.3_ubuntu24_x86_64.deb dvsenseinsight_1.0.3_amd64.deb

‍Ubuntu systems only support versions after 20.04

DVSense Insight software user manual: Download
For Ubuntu systems, please install DVSense Driver before installing DVSense Insight.

Python Driver Installation for DVSense Driver

‍⚠️ Warning
Using the Python interface is not recommended in real-time systems. The Python interface for real-time camera data acquisition only provides synchronous data acquisition APIs and is not thread-safe.

Windows Installation

pip install dvsense-driver

Ubuntu Installation

  1. Install the dvsense-driver SDK
sudo apt install libDvsenseDriver-dev_1.0.3_Linux_x86_64.deb
  1. Install the Python library for DVSense Driver
pip install dvsense-driver

If installing in a conda environment, you may encounter the following errors:

  1. ImportError: libpython3.10.so.1.0: cannot open shared object file: No such file or directory

Solution:

Locate the libpython3.10.so.1.0 file in your environment and copy it to /usr/lib/x86_64-linux-gnu/

  1. ImportError: /lib/x86_64-linux-gnu/libp11-kit.so.0: undefined symbol: ffi_type_pointer, version LIBFFI_BASE_7.0

Solution:

Navigate to your Python lib directory, e.g., ~/anaconda/envs/conda310/lib, and execute the following commands:

mv libffi.so.7 libffi_bak.so.7
ln -s /usr/lib/x86_64-linux-gnu/libffi.so.7.1.0 libffi.so.7