Skip to content

Latest commit

 

History

History
34 lines (29 loc) · 582 Bytes

File metadata and controls

34 lines (29 loc) · 582 Bytes

pyximea

Python bindings for ximea XiAPI

Requirement

python3, numpy

example code

import pyximea as xi
cam = xi.Xi_Camera(DevID=0)
cam.set_param('exposure',10000.0)
img =  cam.get_image()
cam.close()

installing

###Linux (Arch) install ximea framework using the PKGBUILD in the repo, then

cd your_local_clone
python setup.py build_ext -i

###MacOS install ximea framework, then

cd your_local_clone
python setup.py build_ext -i

###Windows install ximea framework install wheel package in the dist folder, require python3.5