ChangelogΒΆ
Full release notes. For the Git commit history see the GitHub repository.
Release February 2026 [1.20.0]ΒΆ
π Major performance optimizations, new OME-ZARR multi-scale output format, and improved ASI stage support.
New Features β¨ΒΆ
π OME-ZARR multi-scale writer: Full support for OME-ZARR 0.4 (zarr v2) and 0.5 (zarr v3) formats with automatic multi-scale pyramid generation. Configurable output with write cache options.
π BigStitcher XML generation: Automatic generation of BigStitcher-compatible metadata files for seamless downstream image stitching and processing.
π PSF analysis GUI tool: Built-in Point Spread Function analysis tool for optical characterization and optimization. Configurable system magnification, voxel size, FOV dimensions, and minimum bead distance (
MIN_BEAD_DISTANCE_UM). Exported PNG files now include a descriptive title.Stage coordinates now included in OME-ZARR coordinate transforms for precise spatial metadata.
Filter name inclusion in acquisition filenames for better data organization.
Baud rate and wheel speed configuration options for Sutter filter wheels.
Consolidated ASI Tiger and MS2000 stage classes with shared trigger support.
Experimental Sham Imagewriter for testing and validation workflows.
Axis discovery and validation system for configured ASI stages.
Performance πΒΆ
π₯ Reduced GUI-induced stuttering and lockups during acquisition through improved thread synchronization and data handling.
Improved memory and core utilization efficiency for OME-ZARR downsampling and writing operations.
Optimized thread priority management for ASI Tiger stages.
Addition of
@timeddecorator for performance profiling of critical functions.
Hardware Control & Support π§ΒΆ
cDAQ hardware integration: Added support for National Instruments cDAQ devices for synchronized I/O operations.
ASI Tiger and MS2000 stages: Unified stage controller with enhanced axis handling, TTL trigger support, and multi-axis motion validation.
Improved serial communication thread safety for ASI stage commands to prevent conflicts between GUI and Core threads.
Axis list discovery from StageControlASITiger for dynamic stage configuration.
Relative and absolute movement testing and validation for both stage types.
Multi-process OME-ZARR writer support (#91) with configurable write cache for fast SSD drives (#97).
Bugfixes πΒΆ
Resolved GUI freezing and stuttering issues due to camera window
autorangefunction issue inpyqtgraphlibrary (#101).Fixed ASI hiccups and freezing by removing pause signals and ensuring Move button commands execute in Main (GUI) thread.
Fixed sticky frozen galvo state with proper
update_gui_from_state()synchronization.Fixed unzeroing galvo amplitude getting stuck during interactive optimization.
Support for multi-part file extensions (e.g.,
.ome.zarr) and dots in filenames (e.g.,Mag7.5).Proper handling of special characters in metadata (% signs removal, underscore replacement).
Fixed empty description handling in file name generation.
OME-ZARR tile naming now compatible with BigStitcher requirements.
Improved dimension naming for OME-ZARR arrays for better downstream tool compatibility.
User Interface & Configuration πΒΆ
New and updated config examples for Benchtop, mesoSPIM-v6, other systems
New cDAQ config example (
config_benchtop-cDAQ.py) for NI cDAQ-based systems.New mandatory dictionaries
plugins={},H5_BDV_Writer={},OME_Zarr_Writer={},MP_OME_Zarr_Writer={}in config files. Seedemo_config.py.Experimental high-speed imaging config file examples (up to 6-8 FPS framerate).
Option for asynchronous OME-ZARR file closure.
Optional multiscale generation control in config file.
Galvo phase widgets enabled for interactive optimization.
System Changes & Architecture πΒΆ
Plugin system for image writers: Modular architecture allowing custom image writer implementations (#91).
Updated dependencies for Python 3.12 compatibility.
Improved async finalization process for large file writes.
Enhanced logging and debugging capabilities with time-stamped function profiling.
Deprecated buffering option configuration fully removed in favor of improved core performance.
Release September 2025 [1.11.1]ΒΆ
π Overhaul of internal bootlnecks that hampered performance on some systems and caused GUI freezing / high CPU loads.
Bugfixes πΒΆ
fixed excessive communication between threads causing high CPU load on some systems.
moved
serial_workerintocorethread to avoid conflicts of relative motion operations with GUI thread.added CPU core identifiers for different operations in
debugmode or logging, to pinpoint performance issues.fixed autofocus (AF) function in the GUI.
returned
'camera_display_live_subsampling': 2,,'camera_display_acquisition_subsampling': 2,and'camera_display_temporal_subsampling': 2,into the config file, to reduce camera display load on older computers.fixed light-sheet markers and box ROI markers in the Camera window, which were not displayed correctly after zoom change.
Release March 2025 [1.11.0].ΒΆ
Performance πΒΆ
implementation of time lapse function via script. See example script at
mesoSPIM/scripts/timelapse.pyfor details.images can now be displayed at full resolution during either live mode or acquisition, with no performance penalty. Deprecated config parameters:
'camera_display_live_subsampling': 2,
'camera_display_acquisition_subsampling': 2,
to enjoy full-resolution image in real time. The corresponding GUI elements for controlling the downsampling were removed.
Bugfixes πΒΆ
duplication of sub-stacks while writing large H5 files (>0.5 TB) and freezing at the end of acquisition. Fixed by replacing signal/slot mechanism for CameraWindow image update to deque mechanism. Boosted performance and stability.
MAXprojection is always on by default, if the dataset is asvaed in TIFF or RAW format. No need to check the box in the Image Processing Wizard. This generates maximum intensity projection as TIFF file for each stack in the acquisition list.explicit initialization of the first raw in Acquisition Manager, to avoid undefined GUI widget states.
Release December 2024 [1.10.2].ΒΆ
Performance πΒΆ
migration to Python 3.12 for better performance and compatibility with the latest libraries.
faster loading and response time of the GUI
subsampling of the camera image for less frequent rendering in the GUI (less CPU load) during acquisition, controlled by
'camera_display_temporal_subsampling': 2,parameter in the config file. Value1means no subsampling (show every image during acquisition).change recommended package manager to
mambato avoid Anaconda license issues.change the default timer for stage position update from 50 ms to 100 ms, to reduce communication and logging overhead. ASI stages updated every 200 ms, PI stages every 100 ms.
zoom dictionary can include multi-word names like
5x Mitutoyoinstead of5xfor better UI and meta-infomation.spinboxes are limited in scroll speed to allow hardware catch up with UI in the interactive mode
#82: uploading UCL-Bechtop config file
config/examples/config_benchtop_UCL_5laser.pyby @TchLenn and parsing of double-digit strings likeao21:22in config file.remove
Logtab from the GUI, as it was not used by the users and was causing unnecessary overhead, esp. in DEBUG mode.
User Interface πΒΆ
ETL config files (.csv) are automatically checked and updated with the
laser-zoomcombination selected in GUI, to avoid errors in the acquisition. User can even start with an empty ETL config file, it will be auto-filled with thelaser-zoomcombinations on the go.more tooltips added to the GUI elements for better user experience.
π§ system changesΒΆ
pip depenencies are frozen for staibilty
mesoSPIM_Stateis only nominally a singleton, but actually inherited by classes from their parent class to ensure unique state and thread safety.no signal from
mesoSPIM_Stateevery time the state is updated. The GUI is updated from state by a separate signal/slot from member classes, on demand.bugfix: serial communication with ASI stages is now thread-safe, with no conflicts between GUI (Main) and Core threads.
bugfix: parsing config file with either
'laser_task_line' : 'PXI6733/ao0:3'or'/PXI6733/ao0:3'notation (Alan Watson).
Release candidate August 2024 [1.10.0]. Cancelled due to performance issues on some setups.ΒΆ
Performance πΒΆ
improved acquisition speed from 2.5 to 5 FPS, by moving image writing to a separate thread and using
collections.dequemechanism for frame sharing between the camera and image writing threads, instead of less-performantQThreadsignal/slot mechanism.best writing speed and lowest CPU overhead is achieved with NVMe SSD disks, recommended.
the option
buffering = {...}in config file is deprecated from v.1.10.0 and will be ignored, due to improved program performance.dependencies are updated to the latest versions:
numpy,scipy,tifffile, etc.
Release July 2024 [1.9.0]ΒΆ
User Interface πΒΆ
π βAuto L/R illuminationβ button in the Acquisition manager to select tile illumination based on its x-position.
π A long awaited feature: Tile Overview window (View/Open Tile Overview), showing the entire acquisition area with tile positions, their overlap, and current FOV position relative to them.
Some setups need to flip x- and/or y-stage polarity for correct tile display: use
'flip_XYZFT_button_polarity': (True, False, False, False, False),in the config file.
π Center Button added in the Main Window GUI, for bringing the sample holder in the X- and Z- center relative to the light-sheet and detection objective.
during acqusition, the currently acquiring row is highlighted in Acquisition Manager and in Tile Overview windows. This has to be set up in the config file with
'x_center_position'and'z_center_position'parameters for stage motion.Buttons for movement in horizontal plane got shorter, for more intuitive navigation.
Current FPS shown in the progress bar.
Webcam window always opens at startup, empty if no camera is present in config file:
'usb_webcam_ID': 0, # open USB web-camera (if available): None, 0 (first cam), 1 (second cam), ...Tooltips were added to the navigation buttons.
Bugfixes πΒΆ
occasional glitch with ASI stages caused by updating stage positions between acquisitions, with serial communication going in two separate threads (mainWindow vs Core).
check motion limits for all tiles before starting the acquisition list, in absolute or relative coodinates (zeroed axes or not).
estimated remaining acquisition time is now calculated correctly, based on the current frame rate.
sample centering and objectiv exchange positions work also when in zeroed-stage regime (local coordinates, user-defined). No need to inactivate
Zero F-stagebutton for safe revolver operation.
Release February 2024 [1.8.3]ΒΆ
User Interface πΒΆ
π Light-sheet direction is shown in the camera window as an image overlay. It interactively changes depending on the Left/Right/Both arms illimination state.
Hardware control π§ΒΆ
Support of Mitutoyo 5-position objective turret (revolver, part #378-726D), for mesoSPIM v4-5 upgrade.
Safety movement of the focus stage backward to
f_objective_exchangeposition for motorized objective exchange. Thef_objective_exchangeparameter is defined in the config file.Optional buffering of images into RAM and flushing to disk when RAM is full or the stack is finished, PR#72 by @AlanMWatson. Controlled by adding
bufferingdictionary to the config file.support of ZWO 2β 7-position filterwheel support (PR#79 by Fabian Voigt)
checks and warnings for AO maximum voltage range (5V or 10V, which depends on hardware, but can be damaging if not set correctly).
Bugfixes πΒΆ
incorrect focus stage steps when interpolating between two focus positions in a stack. Reported and tested by Ivana Gantar and Laura Batti (Wyss Center Geneva). Affected small-amplitude focus interpolation, where required F-stage steps between planes were smaller than minimum feasible stage step. The minimum feasible stage step changed from 0.1 to 0.25 Β΅m in function
get_focus_stepsize_generator(self, f_stage_min_step_um=0.25).no more dropped frames during long acquisitions with slow disks.
Release January 2023 [1.8.2]ΒΆ
Hardware controlΒΆ
New filter wheel ZWO EFWmini supported
added
'speed'config parameter for ASI Tiger controller that allows to change default speed settings.more config examples from various systems were uploaded.
User interfaceΒΆ
official mesoSPIM logo is uploaded, also for use as desktop icon (mesoSPIM-logo.ico)
non-relevant ETL settings are grayed out depending on the left/right illumination to minimize confusion during ETL optimization (#71).
for slow stages the Move buttons can be set to sleep for N ms to limit the click frequency from the user (prevent stage runout): paremeter
'button_sleep_ms_xyzft' : (250, 0, 250, 0, 0),in the config file.file names now include magnification and rotation (if several rotations are present)
GUI allows to change
scale_galvo_amp_with_zoomflag interactively,developer-only GUI sections have smaller font and are marked as such,
STOP Stages button is big red.
Bug fixesΒΆ
tile translation metadata in XML/H5 data were transposed in some configurations (x-y)
'etl_l_delay_%'config parameter was updated to avoid edge artifacts in ETL scanningin auto-focus optimization pipeline, the first image of the sequence was incorrect
Release November 2022 [1.8.1]ΒΆ
Hardware controlΒΆ
β¨ Galvo amplitude can be automatically rescaled depending on selected zoom.
Add scale_galvo_amp_with_zoom = True to config file to enable this feature.
π§ Galvo and ETL of non-active arm are held still to minimize unnecessary heating and stress.
π Optional webcam window can be opened (e.g. for sample overview)
Logging and data managementΒΆ
π§ Logging can be defined in config file using logging_level = 'DEBUG' parameter (possible values INFO,DEBUG).
π§ Log messages are printed in Log tab for quick review, in addition to the log file.
π BigTIFF file support
User interfaceΒΆ
π§ User is forced to select clearing-specific ETL parameters file (e.g. ETL-CLARITY-cuvette40x40.csv) at the startup, to avoid non-optimal default settings (often forgotten step).
π Acquisition Manager shows estimated dataset size (GB) before acquisition to help planning data management.
π Disk space check: if the disk has insufficient free space, acquisition does not start (shows error message).
β¨ New icon for the desktop shortcut.
π Optional Image Contrast window can be opened from Alignment Tab (for calibration purposes)
π§ Multi-tile wizard can have up to 4 channels (previously max: 3).
π§ Version management can now be done using PyPi: pip install mesospim-control.
Control software can be launched in Anaconda prompt from any folder, by mesospim-control command.
Beware that installation path is determined by Anaconda and can be deep (inconvenient). Feature for developers.
π Stage position indicators turn red if stage is within 1 mm from software limits.
π Main Window > View > Cascade windows to bring all windows to screen center (for small screens).
π§ Config file simplified, redundant blocks removed (galvo_etl_designation, laser_designation), warnings are issued if deprecated blocks are present.
π§ Remove F-stage homing to startfocus position, since it added overhead (manual focusing) every time the software was restarted.
Bug fixesΒΆ
π laser lines were hard-coded 0:7, irrespective of config file settings.
π PI stage did not send position updates properly due to missing signal/slot connection: stages were frequently stuck outside of allowed range.
π Image and metadata files are closed properly if the acquisition is aborted.
π npy2bdv was creating XML files unreadabla for Imaris, due to extra spaces between affine transofmration matrix values.
Fixed in npy2bdv==1.0.8, upgrade via pip install -U npy2bdv.
Benchtop hardware supportΒΆ
π All DAQ waveforms can be generated by a single NI-6733 card (up to 4 laser lines).
π ASI Tiger stage controller, with TTL triggering option.
π Photometrics Iris 15 camera
π Arm switching / shutter control by shutterswitch parameter in config file.
π DIY filter wheel, driven by Dynamixel servo (same model as V5 zoom servo)
π fix: ASI Tiger communication issues resolved, multithreading simplified.
Release November 2021 [1.7.1]ΒΆ
β¨ TIFF file name pattern for multi-tile/channel datasets is fully compatible with BigStitcher auto-loader, no renaming is needed.
π fix: Files must always have extension (currently one of .tiff, .tif, .raw, .h5). Files without extension return an error.
β οΈ Default file format for data saving has changed to .h5 for streamlined import into BigStitcher.
π π π Autofocus has been added and works beautifully, outperforming expert human in focusing accuracy by 10x. Highly recommended!
π fix: Going back to previously configured channel in the Tiling Manager appended a new channel to the acquisition list, rather than amending it.
β¨ Laser intensity can be edited directly via spinbox, alternative to slider. In Acquisition manager, slider is replaced by a spinbox for convenience. β οΈ This change makes old acq tables incompatible with the new software.
β¨ Mark All button is added to the Acquisition Manager, per @raacampbell request.
β»οΈ Buttons Mark Rotation Position and Go To Rotation Position are removed from the main panel,
since they are redundant and rarely (if ever) used. Rotation position can be marked in the Acquisition Manager,
and one can go to rotation position by using increment buttons.
π fixed: Image processing option generates MAX projections as TIFF files when output file format is either .raw or .tiff, #60.
β¨ File name wizard auto-starts after Tiling Wizard.
π Image sharpness metric of user-defined ROI (by DCTS algorithm) is added to the Camera Window for easier adjustment of focus and ETL values.
π TIFF files can be opened for preview: Ctrl + O.
π Button Freeze galvos is added to ETL tab for quick adjustment of ETL parameters outside of sample, see video tutorial.
β οΈ Recommended Python upgrade to 3.7 because some libraries have limited support for 3.6 (e.g. tifffile).
π π Saving datasets as ImageJ TIFF files, including big ones (Fiji TIFF format that allows > 4 GB size). Voxel dimension saved in TIFF metadata.
Release July 2021 [1.6.0]ΒΆ
π Simplified installation and upgrading via pip install -r requirements-anaconda.txt. See installation instructions.
π Easy launching via double-clicking start_mesoSPIM.bat file (needs to be configured by the user).
π Support of multiple PI single-axis controllers, thanks to #52 by @drchrisch.
Note the changes in config file: single multi-axis controller (C-884) is initialized by 'PI_1controllerNstages',
while multiple single-axis controllers (C-663) by 'PI_NcontrollersNstages'.
π Incorrect tiling count (off by -1 in some cases) is fixed.
[0.1.5]ΒΆ
π Improved Tiling Wizard:
buttons
x-start, x-end, y-start, y-endadded for easier navigation: no need to search for corners of imaginary box around the sample.left, then rightilluminations can be created automatically for each tile: no need for manual duplication and changing the illumination directions in the Acquisition Manager.
π Improved saving options in Fiji/BigStitcher H5 format:
laser,illumination,angleattributes are saved in the BigStitcher XML file.(optional) downsampling and compression are supported.
π Image window got
Adjust levelsbutton for automatic intensity adjustment.π Image window got optional
Box overlayto help measure sample dimensions.π Tests for tiling and serial communication are created.
π Bugfix: long-standing
permission deniedissues with serial communication to filter wheel and zoom servo are fixed. The fix opens serial ports once and keeps them open during the session. The root cause was due to laser control software polling serial ports regularly, thus blocking access to them.
[0.1.4]ΒΆ
β οΈ Config files need to be updated Please note: Updating to this version requires updating your microscope configuration file. Please copy the new configuration options from the
demo_config.pyfile into your config files.β οΈ π New handling of config files - If there is a single config file (without a βdemoβ prefix in the filename and apart from the
demo_config.py-file) in the config folder, the software will automatically load this file. Otherwise, the config selection GUI is opened. This is especially helpful when operating a mesoSPIM with multiple users. Thanks to @raacampbell for this feature!π New: Writing HDF5 - If all rows in the acquistion manager contain the same file name (ending in
.h5), the entire acquisition list will be saved in a single hdf5 file and a XML created automatically. Both can then be loaded into Bigstitcher for stitching & multiview fusion. This file format is also readable by Imaris. For this, thenpy2bdvpackage by @nvladimus needs to be installed via pip.π New: Dark mode - If the
dark_modeoption in the config file is set toTrue, the user interface appears in a dark mode. For this, theqdarkstylepackage needs to be installed viapython -m pip install qdarkstyle.π New: Camera and Acquisition Manager Windows can be reopened - A new menu allows the camera and acquisition manager windows to be reopened in case they get closed. The same menu bar allows exiting the program as well.
π New: Disabling arrow buttons - To allow mesoSPIM configurations with less than 5 motorized stages, the arrow buttons in the main window can now be disabled in the configuration file. Typical examples are a mesoSPIM without a rotation stage or a mesoSPIM using only a single motorized z-stage. This feature can also be useful if the serial connection to the stages is too slow and pressing the arrow buttons leads to incorrect movements.
π Interactive IPython console - If the software is launched via
python mesoSPIM-control.py -C, an interactive IPython console is launched for debugging. Feature by @raacampbell.π Command-line demo mode option - If the software is launched via
python mesoSPIM-control.py -D, it launches automatically into demo mode. Feature by @raacampbell.π New: Support for PCO cameras - PCO cameras with lightsheet mode are now supported. For this the
pcoPython package needs to be installed viapython -m pip install pco. Currently, the only tested camera is the PCO panda 4.2 bi with lightsheet firmware.π New: Support for Sutter Lambda 10B Filter Controller Thanks to Kevin Dean @AdvancedImagingUTSW, Sutter filter wheels are now supported.
π New: Support for Physik Instrumente stepper motor stages in a XYZ configuration Thanks to @drchrisch, a mesoSPIM configuration (βPI_xyzβ) using stepper motor stages for sample movement is now supported. Please note that this is currently not supporting focus movements or sample rotations.
π New: Support for Physik Instrumente C-863 controller in a single-stage config To allow setting up a simplified mesoSPIM using only a single motorized z-stage (all other stages need to be manually operated), the combination of the C-863 motor controller and L-509 stage is now supported (βPI_zβ)
β¨ Improvement: Disabling movement buttons in the GUI By modifying the
ui_optionsdictionary in the configuration file, the X,Y,Z, focus, rotation, and load/unload buttons can be disabled. This allows modifing the UI for mesoSPIM setups which do not utilize the full set of 5 axes. Disabled buttons are greyed out.β¨ Improvement: Updated multicolor tiling wizard The tiling wizard now displays the FOV size and calculates the X and Y FOV offsets using a percentage setting. For this, the pixel size settings in the configuration file need to be set correctly.
β¨ Improvement: Physik Instrumente stages now report their referencing status after startup in the logfile This allows for easier diagnosis of unreferenced stages during startup. Feature by @raacampbell.
π Bugfix: Binning was not working properly with all cameras.
π Bugfix: Removed unnecessary imports.
π Bugfix: Laser power setting
max_laser_voltagewas always 10V, ignoring the config file. This can damage some lasers that operate on lower command voltage.
Release March 13, 2020 [0.1.3]ΒΆ
β οΈ Depending on your microscope configuration, this release breaks backward compatibility with previous configuration files. If necessary, update your configuration file using
demo_config.pyas an example.β οΈ There are new startup parameters in the config file - make sure to update your config files accordingly. For example,
average_frame_ratehas been added.β οΈ This release removes unnecessary configuration files from the public repository - make sure to back up your mesoSPIM & ETL configuration files beforehand. In addition, old example acquisition tables (in
mesoSPIM-control\mesoSPIM\acquisitions\) are removed as well.π New: Support for more cameras: Photometrics cameras are now supported if
PyVCAMand the PVCAM-SDK are installed. Only the Iris 15 has been tested so far. In addition, the Hamamatsu Orca Fusion is now supported.π New: Multicolor tiling wizard: The Tiling wizard can now support up to 3 color channels with different ETL parameters and focus tracking settings.
π New: Full demo mode - addresses #16:
mesoSPIM-controlcan now be run without any microscope hardware by using thedemo_config.pyconfiguration file.π New: Snap function β Single pictures can now be taken by clicking the snap button. The filename is autogenerated from the current time. Files are saved as
.tifwhich requirestifffileas an additional library.π New: Acquisition time prediction β
mesoSPIM-controlnow measures the average framerate every 100 frames to predict the acquisition time. To have a correct initial estimate in theAcquisition Manager, please update theaverage_frame_ratewith the measured values from your microscope (are now logged in the metadata files after an acquisition).π New: Focus tracking β Different start and end focus positions can now be specified in the Acquisition Manager. When moving the sample to acquire the stack, the microscope changes focus according to a linear interpolation between these values. At z_start, the microscope moves the detection path to f_start and at z_end, the detection path focus is at z_end. This allows imaging a liquid-filled sample cuvette without an immersion cuvette. The
Mark current focusbutton changes both values at once.π New: Improved acquisition previews β An additional checkbox allows to switch off Z axis movements when previewing acquisitions. This way, the field-of-view does not move outside of the sample which is especially helpful when updating ETL value for individual tiles/stacks in large acquisition tables. β οΈ When previewing an acquistion requires a rotation, z movements still occur for safety reasons.
π New: Image Processing Wizard:
mesoSPIM-controlnow has an Image Processing Wizard (accessible via a button in theAcquisition Manager). Currently, this allows maximum projections to be generated automatically after acquisitions.β¨ Improvement:
Acquisition Manager: Naming of buttons has been improved, in addition, tooltips have been added to improve usability.β¨ Improvement: Removed unnecessary microscope and ETL configuration files cluttering the repository. Changed
.gitignorecorrespondingly - future changes to configuration files. This addresses issue #16.β¨ Improvement: The software now provides more verbose warnings when acquisitions cannot be started due to missing folders, duplicated filenames and already existing files.
β¨ Improvement: Better warnings if no row is selected while clicking Mark buttons.
β¨ New: Added a
CHANGELOG.mdfileπ Bugfix: Manually entering a value in a field in the Acquisition Manager table would change values in other rows as well if the row had been copied before.
π Bugfix: Mark buttons and dropdown menus in the Acquisition Manager table slowed down the GUI when a lot of rows (>25) were present. As a fix, only the selected row shows the menu.
π Bugfix #26: Fixed: First row is selected by mark buttons by default if only a single row exists in the Acquisition Manager Table
π Bugfix #27: Fixed: Entering text into boxes is a bit buggy
π Bugfix #30: Fixed: Zooming drop down menu often fails to update after a zoom
π Bugfix #31: Fixed:
demo_config.pynow contains subsampling settingsπ Bugfix #34: Fixed: Last frame in a stack is blank due to an off-by-one error
π Bugfix #35: Fixed: Software crashes when one folder (to save data in) in the acquisition list does not exist
Release August 19th, 2019 [0.1.2]ΒΆ
New: Logging is now supported. Logfiles go in the
logfolder.New: Improved support for a specific mesoSPIM configuration using sample & focusing stages by Steinmayer Mechantronik and in combination with PI stages for sample rotation and z-movement.
Fix: Reduced the output to the command line
Fix: To decrease laggyness of the GUI in live mode and during acquisitions, display subsampling is now available. This way, less image data has to be rendered by the GUI.
Fix: Fixed a variety of multithreading bugs.
Fix: Galvo amplitude and frequency in the startup part of the configuration file are now used to set startup parameters properly