Skip to main content
Version: Next

Installation - Windows

This document describes the steps to install the software development environment for U3V camera on Windows.

Content (Click to jump)

C++ User

Prerequisite

info

If you are using MSVC 2022 (17.10 or later), install OpenCV 4.10.0 or later from the officieal website. Do not forget to add the directory containing the DLL library to the PATH environment variable. See the detail in Update OpenCV.

Sensing-dev Software Packages

Please DL the installer script above or here.

Open the powershell terminal and move to the directory where you have the installer script downloaded in the previous step.

Then type the following command.

.\installer.ps1 

If you do not have and need OpenCV, you can add -InstallOpenCV option.

If you also need Gstreamer tools and plugins, add -InstallGstTools and -InstallGstPlugins respectively

The following example allows you to install all optional components with Sensing-Dev SDK.

.\installer.ps1 -InstallOpenCV -InstallGstTools -InstallGstPlugins 
  • -InstallOpenCV: Add this option to install OpenCV with Sensing-Dev SDK.
  • -InstallGstTools: Add this option to install Gstreamer tools with Sensing-Dev SDK.
  • -InstallGstPlugins: Add this option to install Gstreamer plugins with Sensing-Dev SDK.

The default installation path would be "C:\Users\<username>\AppData\Local\sensing-dev".

why it does not work

When you get

installer.ps1 cannot be loaded because running scripts is disabled on this system

your powershell does not allow to run the script. If so, please add -ExecutionPolicy Bypass option as the following example:

powershell.exe -ExecutionPolicy Bypass -File installer.ps1

Set environment variables

Running the installer.ps1 script would automatically set the environment variable %PATH% and %SENSING_DEV_ROOT% which SDK requires, so you may skip this step.

However, if you change the default path or move the package location, it requires to set them manually with the procedure.

Uninstall procedure

Execute the following command on powershell console will delete the software package and envitronment variables set by installer.ps1.

Invoke-WebRequest -Uri https://github.com/Sensing-Dev/sensing-dev-installer/releases/download/v25.01.02/uninstaller.ps1  -OutFile uninstaller.ps1 -Verbose; powershell.exe -ExecutionPolicy Bypass -File ./uninstaller.ps1

Python User

Prerequisite

For users of previous versions

If you used Sensing-Dev python version v24.05 or eariler, run the following command to remove the old-version dependencies.

Invoke-WebRequest -Uri https://github.com/Sensing-Dev/sensing-dev-installer/releases/download/v25.01.02/uninstaller.ps1  -OutFile uninstaller.ps1 -Verbose; powershell.exe -ExecutionPolicy Bypass -File ./uninstaller.ps1

Also, v24.09 or later uses ion-contrib-python instead of ion-python. Therefore, please uninstall ion-python with the following command.

pip uninstall ion-python -y
note

To fully utilize Sensing-Dev SDK, we recommend to install C++ version too so that you can access to arv-tool which allows you to control Camera from console.

Install dependency

First of all, download from here to install PyGObject

Invoke-WebRequest -Uri https://github.com/Sensing-Dev/sensing-dev-installer/releases/download/v25.01.02/pygobject_installer.ps1  -OutFile pygobject_installer.ps1 -Verbose; powershell.exe -ExecutionPolicy Bypass -File ./pygobject_installer.ps1

Install Python Modules

Then install aravis-python and gendc-python and ion-contrib-python to fully utilize. It is optional to install opencv-python, which is required for some of tutorials.

pip3 install -U pip
pip3 install aravis-python==0.8.31.dev1
pip3 install ion-contrib-python==3.2.7
pip3 install gendc-python==0.4.1
pip3 install opencv-python

Uninstall Python Modules

When you want to uninstall the modules introduced by Sensing-Dev, please execute the following command.

pip3 uninstall aravis-python ion-contrib-python gendc-python PyGObject  -y

Install WinUSB driver on U3V device.

This step is only required the first time a U3V camera device is connected to a host machine.

  1. To apply WinUSB to the target USB device, you need to know Vendor ID and Product ID of the device. Check your U3V camera device using Device Manager. In the search box on the taskbar, type device manager, then select Device Manager from the menu.

before_installed

The image shows there are two unknown U3V camera devices connected on my host machine and we need to install the WinUSB driver. You now double-click the U3V camera device and select the Details tab on the pop up window. From the dropdown menu, choose Hardware Ids and now you can see the Vendor ID in the box following VID_, and Product after PID_BA03. In the example below, they are 2676 and BA03 respectively.

before_installed

  1. Execute the following command on powershell console with Vendor ID that you checked in the step1. This process may take up to 5 minutes.
    Invoke-WebRequest -Uri https://github.com/Sensing-Dev/WinUSB-installer-generator/releases/download/v24.02.02/generate_and_apply_WinUSB.ps1 -OutFile generate_and_apply_WinUSB.ps1 -Verbose; powershell.exe -ExecutionPolicy Bypass -File ./generate_and_apply_WinUSB.ps1 <Vendor ID> <Product ID>

When you replace <Vendor ID> and <Product ID> with their actual values, you do not need < and >.

  • Example with some U3V camera devices
<Vendor ID><Product ID>
Basler daA1280-54uc2676BA03
Sony Kizashi1.2054C0D7D
If you want to uninstall driver
  1. Open Device Manager again, and right click on your device and choose uninstall device.
uninstall
  1. Click the checkbox and click uninstall device
checkbox
  1. Open Action and click scan for hardware changes
hardware

If your device is displaying as an unknown device, congratulations! The WinUSB driver has been successfully uninstalled!