summaryrefslogtreecommitdiffstats
path: root/src/uca-camera.h
Commit message (Collapse)AuthorAgeFilesLines
* Add error type for write methodMatthias Vogelgesang2014-12-171-0/+1
|
* Add uca_camera_write to write arbitrary dataMatthias Vogelgesang2014-12-161-0/+6
| | | | This is necessary for cameras that provide a custom calibration.
* Fix #54: remove sensor-max-frame-rateMatthias Vogelgesang2014-09-101-1/+0
|
* Fix #41: add write accessibility APIMatthias Vogelgesang2014-08-131-0/+9
|
* Fix re-setting a unit on the same camera classMatthias Vogelgesang2014-08-131-1/+1
|
* Remove virtual record_ functions never usedMatthias Vogelgesang2014-08-131-3/+0
|
* Fix #28: Add buffered recording to base classMatthias Vogelgesang2014-02-141-0/+3
| | | | | | | 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.
* Add new API call uca_camera_is_recordingMatthias Vogelgesang2013-12-121-0/+1
|
* Add sensor-pixel-width and sensor-pixel-heightMatthias Vogelgesang2013-05-021-0/+2
| | | | | To all camera authors: you should override these values and provide the correct pixel sizes.
* uca_camera_grab takes a gpointer and returns boolMatthias Vogelgesang2013-03-201-4/+5
|
* Add "recorded-frames" propertyMatthias Vogelgesang2012-10-181-0/+1
|
* Fix download of in-camera framesMatthias Vogelgesang2012-10-181-0/+3
|
* Add download button and make dimax workMatthias Vogelgesang2012-10-181-1/+2
|
* Add temperature unit and descriptions for pcoMatthias Vogelgesang2012-10-161-0/+1
|
* Integrate initial unit facilityMatthias Vogelgesang2012-10-161-1/+17
|
* Fix #151: Rename trigger enum valueMatthias Vogelgesang2012-10-091-1/+1
|
* Fix #150: Add "frames-per-second" propertyMatthias Vogelgesang2012-10-091-0/+1
| | | | | Right now, there is only information for the DIMAX camera about the actual inherent system delay. For all other cameras fps = 1. / t_exp.
* Remove uca_camera_get_types from public APIMatthias Vogelgesang2012-10-081-13/+20
| | | | This functionality was moved to the plugin manager and could not be used anyway.
* Fix LU-26: make "name" a base propertyMatthias Vogelgesang2012-07-121-0/+1
|
* Fix LU-15: Broken ROI imageMatthias Vogelgesang2012-06-291-0/+2
| | | | | | | | 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.
* Generate enum types from sourceMatthias Vogelgesang2012-06-121-2/+0
| | | | | | | | | 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.
* Add trigger mode and trigger methodMatthias Vogelgesang2012-04-241-0/+11
|
* Declare uca_camera_props rather than defineMatthias Vogelgesang2012-04-191-1/+1
|
* Export base properties and string arrayMatthias Vogelgesang2012-04-191-0/+27
| | | | | | | 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.
* Add not-implemented error for ufo readoutMatthias Vogelgesang2012-04-181-1/+2
|
* Implement readout-afte-record modeMatthias Vogelgesang2012-04-121-0/+2
|
* Merge patch from Volker KaiserMatthias Vogelgesang2012-03-211-0/+4
|
* Implement single frame grabbingMatthias Vogelgesang2012-03-061-2/+2
|
* Build mock camera by default and fix warningMatthias Vogelgesang2012-03-051-0/+2
|
* Add factory method to create new camerasMatthias Vogelgesang2012-03-051-0/+4
|
* Complete async xfer infrastructureMatthias Vogelgesang2012-03-051-2/+5
|
* Add asynchronous xfer propertyMatthias Vogelgesang2012-03-051-0/+1
|
* Add callback func and change data to gpointerMatthias Vogelgesang2012-03-041-2/+12
|
* Remove "property-changed" signalMatthias Vogelgesang2012-03-041-1/+0
| | | | | | | | | 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.
* Add start/stop signalMatthias Vogelgesang2012-03-031-0/+2
|
* Test property signalsMatthias Vogelgesang2012-03-021-0/+2
|
* Make UcaCamera a base class not an interfaceMatthias Vogelgesang2012-03-021-4/+20
|
* First draft at clean pco object constructionMatthias Vogelgesang2012-03-011-6/+6
|
* Initial prototype of GObject-based libucaMatthias Vogelgesang2012-03-011-0/+51