This repository is a fork of PyFlow tool, to learn more about it, please click here to go to the original repository
DepthAI GUI is a WYSIWYG tool that allows to create a custom DepthAI pipelines, run them and see the results - all in one tool.
It's purpose is to allow users to create computer vision prototypes quickly, focusing on what rather than how
pip install depthai-gui
To start the GUI, run
depthai-gui
To run a specific example (example.pygraph
) run
depthai-gui -f /path/to/example.pygraph
We experienced this issue with Qt library on Ubuntu 18.04, and the cause of this error was in missing libraries.
To make it work, please make sure you have the following libraries installed:
sudo apt-get install libgl1-mesa-glx libpulse-dev libxcb-xinerama0 libfontconfig libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-shape0 libxcb-xfixes0 libxcb-xkb1 libxkbcommon-x11-0
Here is a gist showing a working Ubuntu 18.04 example installation based on Docker.