jordens / pyflycapture2

python bindings for the flycapture v2 api (libflycapture-2c)
37 stars 31 forks source link

Please document how much the wrapper covers #10

Closed eudoxos closed 8 years ago

eudoxos commented 8 years ago

and also general principles of naming. Such as mentioning what functions are not (yet) supported, and how to translate C++ API calls to pyflycapture2 (such as that_you_use_understores InsteadOfCamelCase, properties are dicts and so on). For instance, I am wondering it Camera::SetStrobe is supported? Thanks.

jordens commented 8 years ago

The wrapper covers everything in https://github.com/jordens/pyflycapture2/blob/master/src/flycapture2.pyx . Methods not yet wrapped there can be added in analogy to the existing ones. Naming conventions follow standard Python. The wrapper uses the C api. You will need to find the C function corresponding to the C++ method you need. Patches for added methods and documentation are welcome.