summaryrefslogtreecommitdiff
path: root/src/uca-camera.c
AgeCommit message (Collapse)Author
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
2012-04-12Implement readout-afte-record modeMatthias Vogelgesang
2012-03-08Quick fix for openSUSE 11.3 with GLib 2.24Matthias Vogelgesang
2012-03-06Implement single frame grabbingMatthias Vogelgesang
2012-03-06pco: Implement mandatory propertiesMatthias 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-05Fix error handlingMatthias Vogelgesang
Obviously, unit tests pay off.
2012-03-05Change recording property only on successMatthias Vogelgesang
2012-03-05Locate place where to put tango server instantiationMatthias Vogelgesang
2012-03-05Use property notification instead of signalMatthias Vogelgesang
Up to this point we used a custom signal to notify about starting and stopping recording of data. However, such signals come (almost) for free for each property. This way, you can query "is-recording" but also be notified when "is-recording" was changed by the camera itself.
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