summaryrefslogtreecommitdiff
path: root/test
AgeCommit message (Collapse)Author
2013-12-10Make ring buffer publicMatthias Vogelgesang
2013-10-29Cleanup CMakeLists.txtMatthias Vogelgesang
2013-04-10Split gui and tools and add preliminary TIFF writeMatthias Vogelgesang
2013-03-13Use GInitable to pass properties to pluginsMatthias Vogelgesang
2013-02-18Set plugin path to the built mock moduleMatthias Vogelgesang
2012-10-16Add temperature unit and descriptions for pcoMatthias Vogelgesang
2012-10-16Integrate initial unit facilityMatthias Vogelgesang
2012-10-11Use updated gtester.xml by Mihael KoepMatthias 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-08Generate introspection filesMatthias Vogelgesang
Unfortunately, the gir tools recognize anything with $PREFIX_new_$SUFFIX as some kind of constructor. This means that we have to rename uca_plugin_manager_new_camera() to uca_plugin_manager_get_camera().
2012-09-28Fix mock unit testMatthias Vogelgesang
2012-09-25Move tools from test/ to tools/ directoryMatthias Vogelgesang
2012-09-21Port perf overhead toolMatthias Vogelgesang
2012-09-21Port grab-async to new plugin managerMatthias Vogelgesang
2012-09-21Remove obsolete test toolsMatthias Vogelgesang
2012-09-21Port the unit tests to the plugin managerMatthias Vogelgesang
2012-09-21Port control GUI to use the plugin managerMatthias Vogelgesang
2012-09-19Make most cameras pluginsMatthias Vogelgesang
2012-09-19Fix segfaultMatthias Vogelgesang
2012-09-19Initial plugin managerMatthias Vogelgesang
2012-09-19Bump to release version 1.0Matthias Vogelgesang
2012-08-10Add gtester xslMatthias Vogelgesang
2012-08-10Merge branch 'ipe-basler'Matthias Vogelgesang
Conflicts: src/CMakeLists.txt
2012-08-07Fix operation on GLib 2.24Matthias Vogelgesang
2012-08-07Check GLib version for GDateTime and GTimeZoneMatthias Vogelgesang
ISS' Jenkins build server has GLib 2.24 which does not have these time related functions.
2012-08-07Calculate timeout only when recording startsMatthias Vogelgesang
Reading register values is not really fast, so we keep the last exposure time when starting the acquisition.
2012-08-07Benchmark: add asynchronous testMatthias Vogelgesang
2012-08-07Benchmark: Implement message loggingMatthias Vogelgesang
Because the UFO camera sometimes errors when grabbing frames, we redirect error messages to the log file error.log.
2012-08-07Update benchmark toolMatthias Vogelgesang
The tool measures the bandwidth performance of a supplied camera. It outputs the results in standard space separated format that can be read with Numpy's loadtxt function.
2012-08-02added variables with which building of test/control and reference ↵Volker Kaiser
documentation can be disabled
2012-08-02use LIBPYLONCAM_LIBDIR also in testsVolker Kaiser
2012-08-01fixed pylon buildVolker Kaiser
2012-08-01reduced differences to masterVolker Kaiser
2012-08-01extracted pylon_camera C-wrapper into own project; enhanced cmake build for ↵Volker Kaiser
pylon cameras
2012-07-26working on baslerVolker Kaiser
2012-07-26basler camera worksVolker Kaiser
2012-07-26pylon (basler) camera addedVolker Kaiser
2012-07-18Install glade file into prefix/share/libucaMatthias Vogelgesang
2012-07-12Remove scale widgetMatthias Vogelgesang
2012-07-11Scale automatically and fix some warnings with UFOMatthias Vogelgesang
2012-07-11Remove unnecessary functionMatthias Vogelgesang
2012-07-09Fix ui issuesMatthias Vogelgesang
2012-07-09Backport combo box in property rendererMatthias Vogelgesang
2012-07-06Pass camera type from command line to grabMatthias Vogelgesang
2012-07-06Remove unused variableMatthias Vogelgesang
2012-07-04Remove unnecessary codeMatthias Vogelgesang
2012-07-04Add property tree viewMatthias Vogelgesang
The standard tree view widget is not capable of setting individual cell renderers per row. Thus I made one with a custom cell renderer that uses an appropriate cell renderer depending of the property type. I developed this independently and put it up on Github at https://github.com/matze/EggPropertyTreeView.
2012-07-03Fix LU-16: Add cooling point propsMatthias Vogelgesang
Added "cooling-point-min", "cooling-point-max" and "cooling-point-default" to query the valid range of "cooling-point".
2012-07-02Use dogmatic Gtk+ way of styling treeview columnsMatthias 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.