diff options
author | Volker Kaiser <volker.kaiser@softwareschneiderei.de> | 2012-08-01 14:06:50 +0200 |
---|---|---|
committer | Volker Kaiser <volker.kaiser@softwareschneiderei.de> | 2012-08-01 14:06:50 +0200 |
commit | 0b5720d0414f7e9f196664677899e999179a49f6 (patch) | |
tree | fb070d27abbbe0dccc23a85b34ce1b6239c4222b /src/cameras/pylon_camera.h | |
parent | 7c5a0bdefd27180da32aaaf9b1331c69c66e1693 (diff) | |
download | libuca-0b5720d0414f7e9f196664677899e999179a49f6.tar.gz libuca-0b5720d0414f7e9f196664677899e999179a49f6.tar.bz2 libuca-0b5720d0414f7e9f196664677899e999179a49f6.tar.xz libuca-0b5720d0414f7e9f196664677899e999179a49f6.zip |
extracted pylon_camera C-wrapper into own project; enhanced cmake build for pylon cameras
Diffstat (limited to 'src/cameras/pylon_camera.h')
-rw-r--r-- | src/cameras/pylon_camera.h | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/src/cameras/pylon_camera.h b/src/cameras/pylon_camera.h deleted file mode 100644 index 89b450b..0000000 --- a/src/cameras/pylon_camera.h +++ /dev/null @@ -1,32 +0,0 @@ - -#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_get_roi(guint16* roi_x, guint16* roi_y, guint16* roi_width, guint16* roi_height, GError** error); -void pylon_camera_set_roi(guint16 roi_x, guint16 roi_y, guint16 roi_width, guint16 roi_height, GError** error); - -void pylon_camera_get_gain(gint* gain, GError** error); -void pylon_camera_set_gain(gint gain, 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 - |