zivid-python
zivid-python copied to clipboard
Official Python package for Zivid 3D cameras
Hi, The error arrise on the line: import zivid Here are the versions: - Ubuntu 21.10 - Python 3.8 - libgcc 7.2.0 - Toshiba Teli driver v3.0.1.1-3 - Zivid Core...
I am on Debian with Python 3.8, and can install 2.1.0 core and telicam driver fine, and `pip install zivid` succeeds. But any attempt at getting the camera results in...
Remove `--workdir /host/continuous-integration/linux` as argument from Linux Docker image. Discovered as part of #82
It is my hope that we can use [pybind11's return value polic](https://pybind11-rtdtest.readthedocs.io/en/stable/advanced.html#return-value-policies)y to remove the need of having cameras/point clouds/application as releasable objects. Specifically: `return_value_policy::take_ownership`, which gives the python code...
I need to convert a numpy.ndarray to a Zivid frame. The reason for this is that I am using ROS ([Zivid Driver](https://github.com/zivid/zivid-ros)), which sends point clouds in the not Zivid...
This bug is planned to be fixed in next version of the SDK. Re-enable this test once the fix is in place. Commit 4eb4a8ef7d28913076be2f39d367a4a29ad03871 should be reverted: https://github.com/zivid/zivid-python/blob/4eb4a8ef7d28913076be2f39d367a4a29ad03871/test/test_frame.py#L49
Origin: https://github.com/zivid/zivid-python/issues/34 Use pip to find latest version from pypi, download http://www.zivid.com/hubfs/softwarefiles/latest_version and compare. Whenever we release a newer SDK version, the current advertised readme should not stop working. `pip...
The C++ layer does expose `==` and `!=` operators, similar special member functions `__eq__` and `__ne__` should rely on these.
`__enter__`, `__exit__`, `__del__` and `release` are duplicated in many of the classes in `modules/zivid` This could be fixed by adding, for example, and decorator: ``` @utils.context_manager class SomethingThatRequiresContextManager: .... ```
Address this todo: https://github.com/zivid/zivid-python/blob/a6e40228ff5186dd47128c65565045f11704c394/continuous-integration/linux/lint-cpp.sh#L31-L52