This folder contains DepthAI utility tools.
device_manager.py helps interfacing with the device Bootloader and bootloader configuration. See Device Manager Usage to see how to use this utility.
Requirements:
# Linux/macOS
python3 -m pip install pyinstaller
# Windows
python -m pip install pyinstaller
To build standalone executable issue the following command:
pyinstaller --onefile -w --icon=assets/icon.ico --add-data="assets/icon.ico;assets" --add-data="assets/icon.png;assets" device_manager.pyOptionally, append --runtime-tmpdir [path or .] to modify where the temporary directory should be created when launched.
Run:
python3 cam_test.pyTo start cam test with GUI.
Run cam_test.py with args to start cam test without GUI:
Requirements:
# Linux/macOS
python3 -m pip install pyinstaller
# Windows
python -m pip install pyinstaller
To build a bundled executable issue the following command:
pyinstaller -w cam_test.py --hidden-import PyQt5.sipThe executable will be located in dist/cam_test folder.
