| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-06-08 | Add UCA_CAMERA_ERROR_DEVICE | Matthias Vogelgesang | |
| For device-specific errors which are not covered by specific error codes. | |||
| 2016-07-13 | Add TIMEOUT error code | Matthias Vogelgesang | |
| 2016-02-16 | Move sensor binnings array out to plugin | Matthias Vogelgesang | |
| 2015-10-21 | Add uca_camera_parse_arg_props | Matthias Vogelgesang | |
| Sets properties from a list of `prop=value` strings. | |||
| 2015-06-02 | Add uca_camera_readout API | Matthias Vogelgesang | |
| This call allows to readout arbitrary frames from internal camera buffers. | |||
| 2015-05-19 | UcaCamera base class: Changed properties | Timo Dritschler | |
| Changed sensor-width, sensor-height and sensor-bitdepth to construct only Added uca_camera_pspec_set_writable mock: allow characterization at construction time Its now possible to set sensor-width, sensor-height and sensor-bitdepth at construction time Creation of random data is now controlled by a property and can be set while recording | |||
| 2015-03-31 | Switch to trigger source/type semantics | Matthias Vogelgesang | |
| This change makes the naming more consistent but will break client and plugin code. The main idea is to specify a trigger source (AUTO being a virtual source) which denotes how causes a trigger and a trigger type which denotes when triggering happens (edge or level). | |||
| 2014-12-17 | Add error type for write method | Matthias Vogelgesang | |
| 2014-12-16 | Add uca_camera_write to write arbitrary data | Matthias Vogelgesang | |
| This is necessary for cameras that provide a custom calibration. | |||
| 2014-09-10 | Fix #54: remove sensor-max-frame-rate | Matthias Vogelgesang | |
| 2014-08-13 | Fix #41: add write accessibility API | Matthias Vogelgesang | |
| 2014-08-13 | Fix re-setting a unit on the same camera class | Matthias Vogelgesang | |
| 2014-08-13 | Remove virtual record_ functions never used | Matthias Vogelgesang | |
| 2014-02-14 | Fix #28: Add buffered recording to base class | Matthias Vogelgesang | |
| This change adds new properties ::buffered and ::num-buffers to the base class. If ::buffered is TRUE, uca_camera_start_recording will spawn a new thread which will call the camera-specific grab. Any call to uca_camera_grab will return the next item from the ring buffer. | |||
| 2013-12-12 | Add new API call uca_camera_is_recording | Matthias Vogelgesang | |
| 2013-05-02 | Add sensor-pixel-width and sensor-pixel-height | Matthias Vogelgesang | |
| To all camera authors: you should override these values and provide the correct pixel sizes. | |||
| 2013-03-20 | uca_camera_grab takes a gpointer and returns bool | Matthias Vogelgesang | |
| 2012-10-18 | Add "recorded-frames" property | Matthias Vogelgesang | |
| 2012-10-18 | Fix download of in-camera frames | Matthias Vogelgesang | |
| 2012-10-18 | Add download button and make dimax work | Matthias Vogelgesang | |
| 2012-10-16 | Add temperature unit and descriptions for pco | Matthias Vogelgesang | |
| 2012-10-16 | Integrate initial unit facility | Matthias Vogelgesang | |
| 2012-10-09 | Fix #151: Rename trigger enum value | Matthias Vogelgesang | |
| 2012-10-09 | Fix #150: Add "frames-per-second" property | Matthias Vogelgesang | |
| Right now, there is only information for the DIMAX camera about the actual inherent system delay. For all other cameras fps = 1. / t_exp. | |||
| 2012-10-08 | Remove uca_camera_get_types from public API | Matthias Vogelgesang | |
| This functionality was moved to the plugin manager and could not be used anyway. | |||
| 2012-07-12 | Fix LU-26: make "name" a base property | Matthias Vogelgesang | |
| 2012-06-29 | Fix LU-15: Broken ROI image | Matthias Vogelgesang | |
| This fix contains two changes: 1. We check that passed ROI requests are multiples of possible ROI steps as provided by the camera. If this is not the case, the request is ignored and a warning issued. 2. We added two new base properties ROI_WIDTH_MULTIPLIER and ROI_HEIGHT_MULTIPLIER that expose this information to client programs. | |||
| 2012-06-12 | Generate enum types from source | Matthias Vogelgesang | |
| It became a little unwieldy to create the enum types manually via g_enums_register_static(). This changeset creates the types from enum definitions in public headers using glib2-mkenum. Be sure to include uca-enums.h in every source file that needs to know GObject enum type. | |||
| 2012-04-24 | Add trigger mode and trigger method | Matthias Vogelgesang | |
| 2012-04-19 | Declare uca_camera_props rather than define | Matthias Vogelgesang | |
| 2012-04-19 | Export base properties and string array | Matthias Vogelgesang | |
| The benefits are two-fold: Camera implementations "know" which base properties exist without looking into the implementation source. Moreover, they can re-use the property strings rather than stating them over and over again. These change should reduce potential c&p errors. | |||
| 2012-04-18 | Add not-implemented error for ufo readout | Matthias Vogelgesang | |
| 2012-04-12 | Implement readout-afte-record mode | Matthias Vogelgesang | |
| 2012-03-21 | Merge patch from Volker Kaiser | Matthias Vogelgesang | |
| 2012-03-06 | Implement single frame grabbing | Matthias Vogelgesang | |
| 2012-03-05 | Build mock camera by default and fix warning | Matthias Vogelgesang | |
| 2012-03-05 | Add factory method to create new cameras | Matthias Vogelgesang | |
| 2012-03-05 | Complete async xfer infrastructure | Matthias Vogelgesang | |
| 2012-03-05 | Add asynchronous xfer property | Matthias Vogelgesang | |
| 2012-03-04 | Add callback func and change data to gpointer | Matthias Vogelgesang | |
| 2012-03-04 | Remove "property-changed" signal | Matthias Vogelgesang | |
| There is already the nice "notify" signal that does essentially the same with a twist. It also allows per-property signals by calling g_signal_connect(cam, "notify::cooling-point", G_CALLBACK(func), NULL); Nice. | |||
| 2012-03-03 | Add start/stop signal | Matthias Vogelgesang | |
| 2012-03-02 | Test property signals | Matthias Vogelgesang | |
| 2012-03-02 | Make UcaCamera a base class not an interface | Matthias Vogelgesang | |
| 2012-03-01 | First draft at clean pco object construction | Matthias Vogelgesang | |
| 2012-03-01 | Initial prototype of GObject-based libuca | Matthias Vogelgesang | |
