Metadata-Version: 2.4
Name: s2ism
Version: 0.2.0
Summary: Reconstruction algorithm for enhanced resolution and optical sectioning in image scanning microscopy.
Home-page: https://github.com/VicidominiLab/s2ism
Author: Alessandro Zunino, Giacomo Garrè
Author-email: "Alessandro Zunino,Giacomo Garrè" <alessandro.zunino@iit.it>
Project-URL: Homepage, https://github.com/VicidominiLab/s2ism
Project-URL: Documentation, https://github.com/VicidominiLab/s2ISM/tree/main/examples
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: matplotlib
Requires-Dist: scipy
Requires-Dist: scikit-image
Requires-Dist: brighteyes-ism
Requires-Dist: torch
Requires-Dist: tqdm
Provides-Extra: testing
Requires-Dist: tox; extra == "testing"
Requires-Dist: pytest; extra == "testing"
Requires-Dist: pytest-cov; extra == "testing"
Requires-Dist: pytest-qt; extra == "testing"
Requires-Dist: napari; extra == "testing"
Requires-Dist: pyqt5; extra == "testing"
Dynamic: license-file

[![License](https://img.shields.io/pypi/l/s2ism.svg?color=green)](https://github.com/VicidominiLab/s2ISM/blob/main/LICENSE)
[![PyPI](https://img.shields.io/pypi/v/s2ism.svg?color=green)](https://pypi.org/project/s2ism/)
[![Python Version](https://img.shields.io/pypi/pyversions/s2ism.svg?color=green)](https://python.org)

# s²ISM

This python package implements s²ISM (Super-resolution Sectioning Image Scanning Microscopy),
a computational technique to reconstruct images with enhanced resolution, optical sectioning, signal-to-noise ratio
and sampling from a conventional ISM dataset acquired by a laser scanning microscope equipped with a detector array.
The details of the method are described in the paper [Structured Detection for Simultaneous Super-Resolution and Optical Sectioning in Laser Scanning Microscopy](https://www.nature.com/articles/s41566-025-01695-0).

The ISM dataset should be a numpy array in the format (x, y, channel), where the channel dimension is the flattened 2D
dimension of the detector array. If lifetime data are present, the array should be in the format (x, y, time, channel).

This package also contains a module for simulating instrument-specific PSFs by retrieving the 
relevant parameters automatically from the raw dataset with minimal user inputs.

## Installation

You can install `s2ism` via [pip] directly from GitHub:

    pip install git+https://github.com/VicidominiLab/s2ISM

or using the version on [PyPI]:

    pip install s2ism

It requires the following Python packages

    numpy
    matplotlib
    scipy
    scikit-image
    brighteyes-ism
    torch
    tqdm

## Documentation

You can find examples of usage here:

https://github.com/VicidominiLab/s2ISM/tree/main/examples

## Citation

If you find s²ISM useful for your research, please cite it as:

_Zunino, A., Garrè, G., Perego, E. et al. Structured detection for simultaneous super-resolution and optical sectioning in laser scanning microscopy. Nat. Photon. (2025). https://doi.org/10.1038/s41566-025-01695-0_

## License

Distributed under the terms of the [GNU GPL v3.0] license,
"s2ISM" is free and open source software


## Contributing

You want to contribute? Great!
Contributing works best if you creat a pull request with your changes.

1. Fork the project.
2. Create a branch for your feature: `git checkout -b cool-new-feature`
3. Commit your changes: `git commit -am 'My new feature'`
4. Push to the branch: `git push origin cool-new-feature`
5. Submit a pull request!

If you are unfamilar with pull requests, you find more information on pull requests in the
 [github help](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/about-pull-requests)

## Issues

If you encounter any problems, please [file an issue] along with a detailed description.

[MIT]: http://opensource.org/licenses/MIT
[BSD-3]: http://opensource.org/licenses/BSD-3-Clause
[GNU GPL v3.0]: http://www.gnu.org/licenses/gpl-3.0.txt
[GNU LGPL v3.0]: http://www.gnu.org/licenses/lgpl-3.0.txt
[Apache Software License 2.0]: http://www.apache.org/licenses/LICENSE-2.0
[Mozilla Public License 2.0]: https://www.mozilla.org/media/MPL/2.0/index.txt

[file an issue]: https://github.com/VicidominiLab/s2ism/issues

[tox]: https://tox.readthedocs.io/en/latest/
[pip]: https://pypi.org/project/pip/
[PyPI]: https://pypi.org/project/s2ism/


