Installation

Zivid Motion is available as a Python API and C++ API. Other language support may be available in the future.

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.