설치
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
설치가 성공했는지 확인하려면 CMake를 사용하여 Zivid Motion을 실행해 볼 수 있습니다.
find_package(ZividMotion COMPONENTS Motion REQUIRED)
target_link_libraries(your_target PRIVATE Zivid::Motion)
Zivid Motion 파일을 받으신 후, 제공된 Python 휠을 설치하십시오.
$ pip install zivid_pythonmotion-*.whl
설치가 성공적으로 완료되었는지 확인하려면 Python을 시작하고 Zivid Motion을 가져올 수 있는지 확인하십시오.
>>> import zividmotion
>>> help(zividmotion)
Zivid Motion 을 설치한 후에는, Quickstart Guide 를 통해 시작할 수 있습니다.