summaryrefslogtreecommitdiff
path: root/src/uca-camera.h
AgeCommit message (Collapse)Author
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