Installation
To install Zivid Motion, install the Debian package (C++) or the Python wheel (Python), then verify the installation succeeded, as shown below for each language. Zivid Motion is available as a Python API and C++ API; other language support may be available in the future. Before installing, check the System Requirements for the supported OS, CPU, and GPU.
After receiving the Zivid Motion files, install the provided Debian packages, which contain the header files, shared library, and CMake module for Zivid Motion.
$ sudo apt install ./zivid-motion-*.deb
To verify that the installation succeeded, you can try to use Zivid Motion with CMake.
find_package(ZividMotion COMPONENTS Motion REQUIRED)
target_link_libraries(your_target PRIVATE Zivid::Motion)
After receiving the Zivid Motion files, install the provided python wheel.
$ pip install zivid_pythonmotion-*.whl
To verify that the installation succeeded, start Python and make sure you can import Zivid Motion.
>>> import zividmotion
>>> help(zividmotion)
After installing Zivid Motion, you can get started with the Quickstart Guide.