-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enhancements: - PSF Analysis: - Added XZ and YZ to slice view along the XY one. - Added normalization option for field PSFs. - Took into account axial to lateral ratio for 2D and 3D visualization. Refactoring: - Extracted PSF data processing methods from PSFView to PSFdata. Bug Fixes: - Added missing dependency PyOpenGL. - Fixed issue for PyQt5 and PyQt6: - QSpinBox.setMaximum only accept integer. - Qt.Orientation.Horizontal instead of Qt.Horizontal. - Missing iterator kk in kernel_MLEFit_LM_sigmaxy. - PSF extraction_protocol error where method Enum is passed instead of its integer value. - PSFView: added missing axisOrder='row-major' to image item. - miCamera: added missing setters for width and height props. Future Updates: - MacOS compatibility testing - Acquisition Experiments Designer tools (continued development) - 3D Localization/Visualization implementation - 2D/3D Single-Particle Tracking introduction
- Loading branch information
Showing
13 changed files
with
686 additions
and
382 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
setuptools.setup( | ||
name='microEye', | ||
version='2.2.2', | ||
version='2.2.2.post1', | ||
author='Mohammad Nour Alsamsam', | ||
author_email='[email protected]', | ||
description='A python toolkit for fluorescence microscopy \ | ||
|
@@ -47,6 +47,7 @@ | |
'pyfiglet==1.0.2', | ||
'pyflakes==3.2.0', | ||
'pyjokes==0.6.0', | ||
'PyOpenGL==3.1.7', | ||
'pyqtdarktheme==2.1.0', | ||
'pyqtgraph==0.13.7', | ||
'pyserial==3.5', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.