This package lets you use YOLO (v2, v3 or v4), the deep learning object detector using the ZED stereo camera in Python 3 or C++.
In order to get the best performance, cuDNN should be install before building OpenCV. Heads over to this TensorFlow documentation article which explains how to setup both CUDA and cuDNN on Ubuntu and Windows.
OpenCV binaries can be downloaded and install from opencv.org.
Alternatively, on Ubuntu :
sudo apt install pkg-config libopencv-dev
On Windows, download and install CMAKE using the binary available here.
On Ubuntu, cmake can be installed using the package manager, i.e : sudo apt install cmake
However the default version of cmake might be too old, it can easily be updated using the script (located in this repository):
sudo bash cmake_apt_update.sh
If the ZED SDK is installed, CMake will automatically detect it and compile with the ZED support. During the CMake configuration, a message will confirm that the ZED SDK was found.
...
-- A library with BLAS API found.
-- ZED SDK enabled
-- Found OpenMP_C: -fopenmp (found version "4.5")
...
Download the yolo weights, yolov4 for instance, and put them in the local folder.
cd zed_cpp_sample/
mkdir build
cd build
cmake ..
make
./build/yolo_zed
Download the yolo weights, yolov4 for instance, and put them in the local folder.
cd zed_python_sample/
python3 zed_yolo.py
A DockerFile is provided in the docker folder
If you need assistance go to our Community site at https://community.stereolabs.com/