summaryrefslogtreecommitdiff
path: root/src/uca-camera.h
AgeCommit message (Collapse)Author
2018-06-08Add UCA_CAMERA_ERROR_DEVICEMatthias Vogelgesang
For device-specific errors which are not covered by specific error codes.
2016-07-13Add TIMEOUT error codeMatthias Vogelgesang
2016-02-16Move sensor binnings array out to pluginMatthias Vogelgesang
2015-10-21Add uca_camera_parse_arg_propsMatthias Vogelgesang
Sets properties from a list of `prop=value` strings.
2015-06-02Add uca_camera_readout APIMatthias Vogelgesang
This call allows to readout arbitrary frames from internal camera buffers.
2015-05-19UcaCamera base class: Changed propertiesTimo 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-31Switch to trigger source/type semanticsMatthias 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-17Add error type for write methodMatthias Vogelgesang
2014-12-16Add uca_camera_write to write arbitrary dataMatthias Vogelgesang
This is necessary for cameras that provide a custom calibration.
2014-09-10Fix #54: remove sensor-max-frame-rateMatthias Vogelgesang
2014-08-13Fix #41: add write accessibility APIMatthias Vogelgesang
2014-08-13Fix re-setting a unit on the same camera classMatthias Vogelgesang
2014-08-13Remove virtual record_ functions never usedMatthias Vogelgesang
2014-02-14Fix #28: Add buffered recording to base classMatthias 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-12Add new API call uca_camera_is_recordingMatthias Vogelgesang
2013-05-02Add sensor-pixel-width and sensor-pixel-heightMatthias Vogelgesang
To all camera authors: you should override these values and provide the correct pixel sizes.
2013-03-20uca_camera_grab takes a gpointer and returns boolMatthias Vogelgesang
2012-10-18Add "recorded-frames" propertyMatthias Vogelgesang
2012-10-18Fix download of in-camera framesMatthias Vogelgesang
2012-10-18Add download button and make dimax workMatthias Vogelgesang
2012-10-16Add temperature unit and descriptions for pcoMatthias Vogelgesang
2012-10-16Integrate initial unit facilityMatthias Vogelgesang
2012-10-09Fix #151: Rename trigger enum valueMatthias Vogelgesang
2012-10-09Fix #150: Add "frames-per-second" propertyMatthias 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-08Remove uca_camera_get_types from public APIMatthias Vogelgesang
This functionality was moved to the plugin manager and could not be used anyway.
2012-07-12Fix LU-26: make "name" a base propertyMatthias Vogelgesang
2012-06-29Fix LU-15: Broken ROI imageMatthias 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-12Generate enum types from sourceMatthias 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-24Add trigger mode and trigger methodMatthias Vogelgesang
2012-04-19Declare uca_camera_props rather than defineMatthias Vogelgesang
2012-04-19Export base properties and string arrayMatthias 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-18Add not-implemented error for ufo readoutMatthias Vogelgesang
2012-04-12Implement readout-afte-record modeMatthias Vogelgesang
2012-03-21Merge patch from Volker KaiserMatthias Vogelgesang
2012-03-06Implement single frame grabbingMatthias Vogelgesang
2012-03-05Build mock camera by default and fix warningMatthias Vogelgesang
2012-03-05Add factory method to create new camerasMatthias Vogelgesang
2012-03-05Complete async xfer infrastructureMatthias Vogelgesang
2012-03-05Add asynchronous xfer propertyMatthias Vogelgesang
2012-03-04Add callback func and change data to gpointerMatthias Vogelgesang
2012-03-04Remove "property-changed" signalMatthias 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-03Add start/stop signalMatthias Vogelgesang
2012-03-02Test property signalsMatthias Vogelgesang
2012-03-02Make UcaCamera a base class not an interfaceMatthias Vogelgesang
2012-03-01First draft at clean pco object constructionMatthias Vogelgesang
2012-03-01Initial prototype of GObject-based libucaMatthias Vogelgesang