diff options
Diffstat (limited to 'src/cameras/pylon_camera.h')
-rw-r--r-- | src/cameras/pylon_camera.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/cameras/pylon_camera.h b/src/cameras/pylon_camera.h new file mode 100644 index 0000000..8a474aa --- /dev/null +++ b/src/cameras/pylon_camera.h @@ -0,0 +1,26 @@ + +#ifndef _PYLON_CAMERA_H_ +#define _PYLON_CAMERA_H_ + +#include <glib.h> + +G_BEGIN_DECLS + +void pylon_camera_new(const gchar* lib_path, const gchar* camera_ip, GError** error); + +void pylon_camera_set_exposure_time(gdouble exp_time, GError** error); +void pylon_camera_get_exposure_time(gdouble* exp_time, GError** error); + +void pylon_camera_get_sensor_size(guint* width, guint* height, GError** error); +void pylon_camera_get_bit_depth(guint* depth, GError** error); + +void pylon_camera_start_acquision(GError** error); +void pylon_camera_stop_acquision(GError** error); +void pylon_camera_grab(gpointer *data, GError** error); + +void pylon_camera_delete(); + +G_END_DECLS + +#endif + |