https://github.com/pupil-labs/pyximea
Python bindings for ximea XiAPI
https://github.com/pupil-labs/pyximea
Last synced: 12 days ago
JSON representation
Python bindings for ximea XiAPI
- Host: GitHub
- URL: https://github.com/pupil-labs/pyximea
- Owner: pupil-labs
- License: mit
- Created: 2014-08-29T14:51:06.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-10-09T16:21:21.000Z (over 8 years ago)
- Last Synced: 2025-04-13T05:45:27.388Z (12 days ago)
- Language: Python
- Size: 20.5 KB
- Stars: 9
- Watchers: 6
- Forks: 8
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
pyximea
=======Python bindings for ximea XiAPI
## example code
```python
import ximea as xi
cam = xi.Xi_Camera(DevID=0)
cam.set_param('exposure',10000.0)
img = cam.get_image()
cam.close()
```## building
###MacOS
install ximea framework
cd your_local_clone
python setup.py build_ext -i###Linux (Ubnutu)
todo