summaryrefslogtreecommitdiff
path: root/src/uca-camera.c
AgeCommit message (Collapse)Author
2014-09-30pco: add global shutter supportMatthias Vogelgesang
2014-09-15Fix race condition on buffered acquisitionMatthias Vogelgesang
2014-09-10Fix #54: remove sensor-max-frame-rateMatthias Vogelgesang
2014-08-13Fix #41: add write accessibility APIMatthias Vogelgesang
2014-08-13Refactor out get_param_spec_by_nameMatthias Vogelgesang
2014-08-13Fix re-setting a unit on the same camera classMatthias Vogelgesang
2014-08-07Reset all property units and warn on overrideMatthias Vogelgesang
2014-08-07Prevent overwriting unit definitionMatthias Vogelgesang
2014-07-29Added proper handling for 'frames-per-second' property to uca-camera base classTimo Dritschler
2014-03-05Fix annotationsMatthias Vogelgesang
2014-02-18Add compatibility layer for new thread APIMatthias 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-10-22Initialize result variableMatthias Vogelgesang
Thanks clang!
2013-07-17Provide binning default and let cameras use thatMatthias Vogelgesang
2013-07-17Set default values for ROI multipliersMatthias 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-04-15Fix segmentation fault when accessing binning listMatthias Vogelgesang
This fixes one of the problems in #208.
2013-03-20Implement trigger logic in base cameraMatthias Vogelgesang
2013-03-20uca_camera_grab takes a gpointer and returns boolMatthias Vogelgesang
2012-10-22Lock access to camera implementationsMatthias Vogelgesang
Thus, two threads will never invoke the camera implementations of grab() and stop().
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-11Implement adjustable histogramMatthias Vogelgesang
2012-10-10Implement experimental histogram viewMatthias 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-09-25Fix #139: Lock API functionsMatthias Vogelgesang
2012-09-19Make most cameras pluginsMatthias Vogelgesang
2012-09-19Initial plugin managerMatthias Vogelgesang
2012-07-26adjusted pylon additionsVolker Kaiser
2012-07-26pylon (basler) camera addedVolker Kaiser
2012-07-12Fix LU-26: make "name" a base propertyMatthias Vogelgesang
2012-07-06Fix UcaUfoCamera instantiationMatthias 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-14Fix LU-8Matthias Vogelgesang
Override default values for ROI size, cooling point and pixel rate.
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-06-12Fix LU-5Matthias Vogelgesang
2012-05-29Use ROI with (0,0) as starting coordinateMatthias Vogelgesang
2012-04-24Add trigger mode and trigger methodMatthias Vogelgesang
2012-04-19Add Photon FocusMatthias 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-18Generate documentation with gtk-docMatthias Vogelgesang
2012-04-18Add not-implemented error for ufo readoutMatthias Vogelgesang
2012-04-17Make exposure time writeableMatthias Vogelgesang
2012-04-17Add prelimary UFO camera supportMatthias Vogelgesang
2012-04-12Check errors and fix small issuesMatthias Vogelgesang