BaSiCPy


NameBaSiCPy JSON
Version 1.2.0 PyPI version JSON
download
home_pagehttps://github.com/peng-lab/BaSiCPy
SummaryA python package for background and shading correction of optical microscopy images
upload_time2024-04-22 17:50:02
maintainerNone
docs_urlNone
authorNicholas Schaub, Tim Morello, Tingying Peng, Yohsuke T. Fukai
requires_python>=3.8
licenseMIT
keywords background shading flatfield darkfield biology optical microscopy image illumination
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # BaSiCPy
A python package for background and shading correction of optical microscopy images

[![PyPI](https://img.shields.io/pypi/v/basicpy.svg)](https://pypi.org/project/basicpy)
[![Status](https://img.shields.io/pypi/status/basicpy.svg)](https://pypi.org/project/basicpy/)
[![Python Version](https://img.shields.io/pypi/pyversions/basicpy.svg)](https://python.org)
[![License](https://img.shields.io/pypi/l/basicpy)](https://github.com/peng-lab/BaSiCPy/blob/main/LICENSE)
[![Tests](https://github.com/peng-lab/basicpy/workflows/CI/badge.svg)](https://github.com/peng-lab/basicpy/actions?workflow=CI)
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit)
[![Black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![Read the Docs](https://img.shields.io/readthedocs/basicpy/latest.svg?label=Read%20the%20Docs)](https://basicpy.readthedocs.io/)
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
[![All Contributors](https://img.shields.io/badge/all_contributors-5-orange.svg?style=flat-square)](#contributors-)
<!-- ALL-CONTRIBUTORS-BADGE:END -->

BaSiCPy is a python package for background and shading correction of optical microscopy images.
It is developed based on the Matlab version of [BaSiC](https://github.com/marrlab/BaSiC) tool with major improvements in the algorithm.

Reference:
- BaSiCPy: A robust and scalable shadow correction tool for optical microscopy images (in prep.)
- A BaSiC Tool for Background and Shading Correction of Optical Microscopy Images
  by Tingying Peng, Kurt Thorn, Timm Schroeder, Lichao Wang, Fabian J Theis, Carsten Marr\*, Nassir Navab\*, Nature Communication 8:14836 (2017). [doi: 10.1038/ncomms14836](http://www.nature.com/articles/ncomms14836).


## Simple examples

|Notebook|Description|Colab Link|
| :------------------------: |:---------------:| :---------------------------------------------------: |
| [timelapse_brightfield](https://github.com/peng-lab/BaSiCPy/tree/dev/docs/notebooks/timelapse_brightfield.ipynb)| 100 continuous brightfield frames of a time-lapse movie of differentiating mouse hematopoietic stem cells. | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/peng-lab/BaSiCPy/blob/dev/docs/notebooks/timelapse_brightfield.ipynb) |
| [timelapse_nanog](https://github.com/peng-lab/BaSiCPy/tree/dev/docs/notebooks/timelapse_nanog.ipynb)| 189 continuous fluorescence frames of a time-lapse movie of differentiating mouse embryonic stem cells, which move much more slower compared to the fast moving hematopoietic stem cells, resulting in a much larger correlation between frames. Note that in this challenging case, the automatic parameters are no longer optimal, so we use the manual parameter setting (larger smooth regularization on both flat-field and dark-field) to improve BaSiC’s performance. | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/peng-lab/BaSiCPy/blob/dev/docs/notebooks/timelapse_nanog.ipynb) |
| [WSI_brain](https://github.com/peng-lab/BaSiCPy/tree/dev/docs/notebooks/WSI_brain.ipynb)| you can stitch image tiles together to view the effect of shading correction | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/peng-lab/BaSiCPy/blob/dev/docs/notebooks/WSI_brain.ipynb) |

You can also find examples of running the package at [notebooks folder](https://github.com/peng-lab/BaSiCPy/tree/dev/docs/notebooks). Data used in the examples and a description can be downloaded from [Zenodo](https://doi.org/10.5281/zenodo.6334809).

---
## Usage

See [Read the Docs](https://basicpy.readthedocs.io/en/latest/) for the detailed usage.

## Installation

### For Mac (Intel chip), Linux or WSL2 users

 Install from PyPI

```console
pip install basicpy
```

or install the latest development version

```console
git clone https://github.com/peng-lab/BaSiCPy.git
cd BaSiCPy
pip install .
```

### For Mac users with M1 / M2 chip

BaSiCPy requires [`jax`](https://github.com/google/jax/),
which has potential build issue with M1 chips.
One easiest solution is using [Miniforge](https://github.com/conda-forge/miniforge)
as explained [here](https://github.com/google/jax/issues/5501).
In the Miniforge environment, please try the following:
```bash
conda install -c conda-forge jax jaxlib
pip install basicpy
```

### For Windows users

BaSiCPy requires [`jax`](https://github.com/google/jax/) which does not support Windows officially.
However, thanks to [cloudhan/jax-windows-builder](https://github.com/cloudhan/jax-windows-builder), we can install BaSiCPy as follows:

```bash
pip install "jax[cpu]==0.4.11" -f https://whls.blob.core.windows.net/unstable/index.html --use-deprecated legacy-resolver
pip install ml-dtypes==0.2.0
pip install basicpy
```

One may need to add
```python
import jax
jax.config.update('jax_platform_name', 'cpu')
```
at the top of the script to ensure that JAX uses CPU.

For details and latest updates, see [this issue](https://github.com/google/jax/issues/438).

### Install with dev dependencies

```console
git clone https://github.com/peng-lab/BaSiCPy.git
cd BaSiCPy
python -m venv venv
source venv/bin/activate
pip install -e '.[dev]'
```

## Development

### bump2version

This repository uses [bump2version](https://github.com/c4urself/bump2version) to manage dependencies. New releases are pushed to PyPi in the CI pipeline when a new version is committed with a version tag and pushed to the repo.

The development flow should use the following process:
1. New features and bug fixes should be pushed to `dev`
2. When tests have passed a new development version is ready to be release, use `bump2version major|minor|patch`. This will commit and create a new version tag with the `-dev` suffix.
3. Additional fixes/features can be added to the current development release by using `bump2version build`.
4. Once the new bugs/features have been tested and a main release is ready, use `bump2version release` to remove the `-dev` suffix.

After creating a new tagged version, push to Github and the version will be built and pushed to PyPi.

### All-contributors

This repository uses [All Contributors](https://allcontributors.org/) to manage the contributor list. Please execute the following to add/update contributors.

```bash
yarn
yarn all-contributors add username contribution
yarn all-contributors generate # to reflect the changes to README.md
```

For the possible contribution types, see the [All Contributors documentation](https://allcontributors.org/docs/en/emoji-key).

## Contributors

### Current version
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<table>
  <tr>
    <td align="center"><a href="https://github.com/Nicholas-Schaub"><img src="https://avatars.githubusercontent.com/u/15925882?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Nicholas-Schaub</b></sub></a><br /><a href="#projectManagement-Nicholas-Schaub" title="Project Management">πŸ“†</a> <a href="https://github.com/peng-lab/BaSiCPy/pulls?q=is%3Apr+reviewed-by%3ANicholas-Schaub" title="Reviewed Pull Requests">πŸ‘€</a> <a href="#infra-Nicholas-Schaub" title="Infrastructure (Hosting, Build-Tools, etc)">πŸš‡</a> <a href="https://github.com/peng-lab/BaSiCPy/commits?author=Nicholas-Schaub" title="Tests">⚠️</a> <a href="https://github.com/peng-lab/BaSiCPy/commits?author=Nicholas-Schaub" title="Code">πŸ’»</a> <a href="#ideas-Nicholas-Schaub" title="Ideas, Planning, & Feedback">πŸ€”</a></td>
    <td align="center"><a href="https://github.com/tdmorello"><img src="https://avatars.githubusercontent.com/u/34800427?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tim Morello</b></sub></a><br /><a href="https://github.com/peng-lab/BaSiCPy/commits?author=tdmorello" title="Code">πŸ’»</a> <a href="https://github.com/peng-lab/BaSiCPy/commits?author=tdmorello" title="Documentation">πŸ“–</a> <a href="https://github.com/peng-lab/BaSiCPy/pulls?q=is%3Apr+reviewed-by%3Atdmorello" title="Reviewed Pull Requests">πŸ‘€</a> <a href="https://github.com/peng-lab/BaSiCPy/commits?author=tdmorello" title="Tests">⚠️</a> <a href="#ideas-tdmorello" title="Ideas, Planning, & Feedback">πŸ€”</a> <a href="#infra-tdmorello" title="Infrastructure (Hosting, Build-Tools, etc)">πŸš‡</a></td>
    <td align="center"><a href="https://github.com/tying84"><img src="https://avatars.githubusercontent.com/u/11461947?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tingying Peng</b></sub></a><br /><a href="#data-tying84" title="Data">πŸ”£</a> <a href="#financial-tying84" title="Financial">πŸ’΅</a> <a href="#projectManagement-tying84" title="Project Management">πŸ“†</a> <a href="#talk-tying84" title="Talks">πŸ“’</a> <a href="https://github.com/peng-lab/BaSiCPy/commits?author=tying84" title="Code">πŸ’»</a></td>
    <td align="center"><a href="https://github.com/yfukai"><img src="https://avatars.githubusercontent.com/u/5919272?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Yohsuke T. Fukai</b></sub></a><br /><a href="#research-yfukai" title="Research">πŸ”¬</a> <a href="https://github.com/peng-lab/BaSiCPy/commits?author=yfukai" title="Code">πŸ’»</a> <a href="#ideas-yfukai" title="Ideas, Planning, & Feedback">πŸ€”</a> <a href="https://github.com/peng-lab/BaSiCPy/pulls?q=is%3Apr+reviewed-by%3Ayfukai" title="Reviewed Pull Requests">πŸ‘€</a> <a href="https://github.com/peng-lab/BaSiCPy/commits?author=yfukai" title="Tests">⚠️</a> <a href="#question-yfukai" title="Answering Questions">πŸ’¬</a> <a href="#infra-yfukai" title="Infrastructure (Hosting, Build-Tools, etc)">πŸš‡</a></td>
    <td align="center"><a href="https://github.com/YuLiu-web"><img src="https://avatars.githubusercontent.com/u/70626217?v=4?s=100" width="100px;" alt=""/><br /><sub><b>YuLiu-web</b></sub></a><br /><a href="https://github.com/peng-lab/BaSiCPy/commits?author=YuLiu-web" title="Documentation">πŸ“–</a> <a href="#userTesting-YuLiu-web" title="User Testing">πŸ““</a></td>
  </tr>
</table>

<!-- markdownlint-restore -->
<!-- prettier-ignore-end -->

<!-- ALL-CONTRIBUTORS-LIST:END -->

For details on the contribution roles, see the [documentation](https://basicpy.readthedocs.io/en/latest/contributors.html).


### Old version (`f3fcf19`), used as the reference implementation to check the approximate algorithm
- Lorenz Lamm (@LorenzLamm)
- Mohammad Mirkazemi (@Mirkazemi)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/peng-lab/BaSiCPy",
    "name": "BaSiCPy",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "background shading flatfield darkfield biology optical microscopy image illumination",
    "author": "Nicholas Schaub, Tim Morello, Tingying Peng, Yohsuke T. Fukai",
    "author_email": "nick.schaub@nih.gov, timothy.morello@downstate.edu, tingying.peng@helmholtz-muenchen.de, ysk@yfukai.net",
    "download_url": "https://files.pythonhosted.org/packages/f3/f6/929b424c462de72654907b79010627892edc76260710e46fbb8914aa43f8/basicpy-1.2.0.tar.gz",
    "platform": null,
    "description": "# BaSiCPy\nA python package for background and shading correction of optical microscopy images\n\n[![PyPI](https://img.shields.io/pypi/v/basicpy.svg)](https://pypi.org/project/basicpy)\n[![Status](https://img.shields.io/pypi/status/basicpy.svg)](https://pypi.org/project/basicpy/)\n[![Python Version](https://img.shields.io/pypi/pyversions/basicpy.svg)](https://python.org)\n[![License](https://img.shields.io/pypi/l/basicpy)](https://github.com/peng-lab/BaSiCPy/blob/main/LICENSE)\n[![Tests](https://github.com/peng-lab/basicpy/workflows/CI/badge.svg)](https://github.com/peng-lab/basicpy/actions?workflow=CI)\n[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit)\n[![Black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n[![Read the Docs](https://img.shields.io/readthedocs/basicpy/latest.svg?label=Read%20the%20Docs)](https://basicpy.readthedocs.io/)\n<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->\n[![All Contributors](https://img.shields.io/badge/all_contributors-5-orange.svg?style=flat-square)](#contributors-)\n<!-- ALL-CONTRIBUTORS-BADGE:END -->\n\nBaSiCPy is a python package for background and shading correction of optical microscopy images.\nIt is developed based on the Matlab version of [BaSiC](https://github.com/marrlab/BaSiC) tool with major improvements in the algorithm.\n\nReference:\n- BaSiCPy: A robust and scalable shadow correction tool for optical microscopy images (in prep.)\n- A BaSiC Tool for Background and Shading Correction of Optical Microscopy Images\n  by Tingying Peng, Kurt Thorn, Timm Schroeder, Lichao Wang, Fabian J Theis, Carsten Marr\\*, Nassir Navab\\*, Nature Communication 8:14836 (2017). [doi: 10.1038/ncomms14836](http://www.nature.com/articles/ncomms14836).\n\n\n## Simple examples\n\n|Notebook|Description|Colab Link|\n| :------------------------: |:---------------:| :---------------------------------------------------: |\n| [timelapse_brightfield](https://github.com/peng-lab/BaSiCPy/tree/dev/docs/notebooks/timelapse_brightfield.ipynb)| 100 continuous brightfield frames of a time-lapse movie of differentiating mouse hematopoietic stem cells. | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/peng-lab/BaSiCPy/blob/dev/docs/notebooks/timelapse_brightfield.ipynb) |\n| [timelapse_nanog](https://github.com/peng-lab/BaSiCPy/tree/dev/docs/notebooks/timelapse_nanog.ipynb)| 189 continuous fluorescence frames of a time-lapse movie of differentiating mouse embryonic stem cells, which move much more slower compared to the fast moving hematopoietic stem cells, resulting in a much larger correlation between frames. Note that in this challenging case, the automatic parameters are no longer optimal, so we use the manual parameter setting (larger smooth regularization on both flat-field and dark-field) to improve BaSiC\u2019s performance. | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/peng-lab/BaSiCPy/blob/dev/docs/notebooks/timelapse_nanog.ipynb) |\n| [WSI_brain](https://github.com/peng-lab/BaSiCPy/tree/dev/docs/notebooks/WSI_brain.ipynb)| you can stitch image tiles together to view the effect of shading correction | [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/peng-lab/BaSiCPy/blob/dev/docs/notebooks/WSI_brain.ipynb) |\n\nYou can also find examples of running the package at [notebooks folder](https://github.com/peng-lab/BaSiCPy/tree/dev/docs/notebooks). Data used in the examples and a description can be downloaded from [Zenodo](https://doi.org/10.5281/zenodo.6334809).\n\n---\n## Usage\n\nSee [Read the Docs](https://basicpy.readthedocs.io/en/latest/) for the detailed usage.\n\n## Installation\n\n### For Mac (Intel chip), Linux or WSL2 users\n\n Install from PyPI\n\n```console\npip install basicpy\n```\n\nor install the latest development version\n\n```console\ngit clone https://github.com/peng-lab/BaSiCPy.git\ncd BaSiCPy\npip install .\n```\n\n### For Mac users with M1 / M2 chip\n\nBaSiCPy requires [`jax`](https://github.com/google/jax/),\nwhich has potential build issue with M1 chips.\nOne easiest solution is using [Miniforge](https://github.com/conda-forge/miniforge)\nas explained [here](https://github.com/google/jax/issues/5501).\nIn the Miniforge environment, please try the following:\n```bash\nconda install -c conda-forge jax jaxlib\npip install basicpy\n```\n\n### For Windows users\n\nBaSiCPy requires [`jax`](https://github.com/google/jax/) which does not support Windows officially.\nHowever, thanks to [cloudhan/jax-windows-builder](https://github.com/cloudhan/jax-windows-builder), we can install BaSiCPy as follows:\n\n```bash\npip install \"jax[cpu]==0.4.11\" -f https://whls.blob.core.windows.net/unstable/index.html --use-deprecated legacy-resolver\npip install ml-dtypes==0.2.0\npip install basicpy\n```\n\nOne may need to add\n```python\nimport jax\njax.config.update('jax_platform_name', 'cpu')\n```\nat the top of the script to ensure that JAX uses CPU.\n\nFor details and latest updates, see [this issue](https://github.com/google/jax/issues/438).\n\n### Install with dev dependencies\n\n```console\ngit clone https://github.com/peng-lab/BaSiCPy.git\ncd BaSiCPy\npython -m venv venv\nsource venv/bin/activate\npip install -e '.[dev]'\n```\n\n## Development\n\n### bump2version\n\nThis repository uses [bump2version](https://github.com/c4urself/bump2version) to manage dependencies. New releases are pushed to PyPi in the CI pipeline when a new version is committed with a version tag and pushed to the repo.\n\nThe development flow should use the following process:\n1. New features and bug fixes should be pushed to `dev`\n2. When tests have passed a new development version is ready to be release, use `bump2version major|minor|patch`. This will commit and create a new version tag with the `-dev` suffix.\n3. Additional fixes/features can be added to the current development release by using `bump2version build`.\n4. Once the new bugs/features have been tested and a main release is ready, use `bump2version release` to remove the `-dev` suffix.\n\nAfter creating a new tagged version, push to Github and the version will be built and pushed to PyPi.\n\n### All-contributors\n\nThis repository uses [All Contributors](https://allcontributors.org/) to manage the contributor list. Please execute the following to add/update contributors.\n\n```bash\nyarn\nyarn all-contributors add username contribution\nyarn all-contributors generate # to reflect the changes to README.md\n```\n\nFor the possible contribution types, see the [All Contributors documentation](https://allcontributors.org/docs/en/emoji-key).\n\n## Contributors\n\n### Current version\n<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->\n<!-- prettier-ignore-start -->\n<!-- markdownlint-disable -->\n<table>\n  <tr>\n    <td align=\"center\"><a href=\"https://github.com/Nicholas-Schaub\"><img src=\"https://avatars.githubusercontent.com/u/15925882?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Nicholas-Schaub</b></sub></a><br /><a href=\"#projectManagement-Nicholas-Schaub\" title=\"Project Management\">\ud83d\udcc6</a> <a href=\"https://github.com/peng-lab/BaSiCPy/pulls?q=is%3Apr+reviewed-by%3ANicholas-Schaub\" title=\"Reviewed Pull Requests\">\ud83d\udc40</a> <a href=\"#infra-Nicholas-Schaub\" title=\"Infrastructure (Hosting, Build-Tools, etc)\">\ud83d\ude87</a> <a href=\"https://github.com/peng-lab/BaSiCPy/commits?author=Nicholas-Schaub\" title=\"Tests\">\u26a0\ufe0f</a> <a href=\"https://github.com/peng-lab/BaSiCPy/commits?author=Nicholas-Schaub\" title=\"Code\">\ud83d\udcbb</a> <a href=\"#ideas-Nicholas-Schaub\" title=\"Ideas, Planning, & Feedback\">\ud83e\udd14</a></td>\n    <td align=\"center\"><a href=\"https://github.com/tdmorello\"><img src=\"https://avatars.githubusercontent.com/u/34800427?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Tim Morello</b></sub></a><br /><a href=\"https://github.com/peng-lab/BaSiCPy/commits?author=tdmorello\" title=\"Code\">\ud83d\udcbb</a> <a href=\"https://github.com/peng-lab/BaSiCPy/commits?author=tdmorello\" title=\"Documentation\">\ud83d\udcd6</a> <a href=\"https://github.com/peng-lab/BaSiCPy/pulls?q=is%3Apr+reviewed-by%3Atdmorello\" title=\"Reviewed Pull Requests\">\ud83d\udc40</a> <a href=\"https://github.com/peng-lab/BaSiCPy/commits?author=tdmorello\" title=\"Tests\">\u26a0\ufe0f</a> <a href=\"#ideas-tdmorello\" title=\"Ideas, Planning, & Feedback\">\ud83e\udd14</a> <a href=\"#infra-tdmorello\" title=\"Infrastructure (Hosting, Build-Tools, etc)\">\ud83d\ude87</a></td>\n    <td align=\"center\"><a href=\"https://github.com/tying84\"><img src=\"https://avatars.githubusercontent.com/u/11461947?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Tingying Peng</b></sub></a><br /><a href=\"#data-tying84\" title=\"Data\">\ud83d\udd23</a> <a href=\"#financial-tying84\" title=\"Financial\">\ud83d\udcb5</a> <a href=\"#projectManagement-tying84\" title=\"Project Management\">\ud83d\udcc6</a> <a href=\"#talk-tying84\" title=\"Talks\">\ud83d\udce2</a> <a href=\"https://github.com/peng-lab/BaSiCPy/commits?author=tying84\" title=\"Code\">\ud83d\udcbb</a></td>\n    <td align=\"center\"><a href=\"https://github.com/yfukai\"><img src=\"https://avatars.githubusercontent.com/u/5919272?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Yohsuke T. Fukai</b></sub></a><br /><a href=\"#research-yfukai\" title=\"Research\">\ud83d\udd2c</a> <a href=\"https://github.com/peng-lab/BaSiCPy/commits?author=yfukai\" title=\"Code\">\ud83d\udcbb</a> <a href=\"#ideas-yfukai\" title=\"Ideas, Planning, & Feedback\">\ud83e\udd14</a> <a href=\"https://github.com/peng-lab/BaSiCPy/pulls?q=is%3Apr+reviewed-by%3Ayfukai\" title=\"Reviewed Pull Requests\">\ud83d\udc40</a> <a href=\"https://github.com/peng-lab/BaSiCPy/commits?author=yfukai\" title=\"Tests\">\u26a0\ufe0f</a> <a href=\"#question-yfukai\" title=\"Answering Questions\">\ud83d\udcac</a> <a href=\"#infra-yfukai\" title=\"Infrastructure (Hosting, Build-Tools, etc)\">\ud83d\ude87</a></td>\n    <td align=\"center\"><a href=\"https://github.com/YuLiu-web\"><img src=\"https://avatars.githubusercontent.com/u/70626217?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>YuLiu-web</b></sub></a><br /><a href=\"https://github.com/peng-lab/BaSiCPy/commits?author=YuLiu-web\" title=\"Documentation\">\ud83d\udcd6</a> <a href=\"#userTesting-YuLiu-web\" title=\"User Testing\">\ud83d\udcd3</a></td>\n  </tr>\n</table>\n\n<!-- markdownlint-restore -->\n<!-- prettier-ignore-end -->\n\n<!-- ALL-CONTRIBUTORS-LIST:END -->\n\nFor details on the contribution roles, see the [documentation](https://basicpy.readthedocs.io/en/latest/contributors.html).\n\n\n### Old version (`f3fcf19`), used as the reference implementation to check the approximate algorithm\n- Lorenz Lamm (@LorenzLamm)\n- Mohammad Mirkazemi (@Mirkazemi)\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A python package for background and shading correction of optical microscopy images",
    "version": "1.2.0",
    "project_urls": {
        "Bug Tracker": "https://github.com/peng-lab/BaSiCPy/issues",
        "Homepage": "https://github.com/peng-lab/BaSiCPy"
    },
    "split_keywords": [
        "background",
        "shading",
        "flatfield",
        "darkfield",
        "biology",
        "optical",
        "microscopy",
        "image",
        "illumination"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cfa37b32e17ef275d2a33311ad595d186fce87e3e73e12d277825b616225b999",
                "md5": "e3761ee18adf668a0507d17ce904b7ea",
                "sha256": "cad5612e5f8f7b1ac6faa3a14f6bf9b34979efdd022fc58b72eb50ff73f9663c"
            },
            "downloads": -1,
            "filename": "BaSiCPy-1.2.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e3761ee18adf668a0507d17ce904b7ea",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 24737,
            "upload_time": "2024-04-22T17:50:00",
            "upload_time_iso_8601": "2024-04-22T17:50:00.580519Z",
            "url": "https://files.pythonhosted.org/packages/cf/a3/7b32e17ef275d2a33311ad595d186fce87e3e73e12d277825b616225b999/BaSiCPy-1.2.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f3f6929b424c462de72654907b79010627892edc76260710e46fbb8914aa43f8",
                "md5": "edb866e4a3b1596b17e09d24facabbd9",
                "sha256": "9775c595a7d05747e66668c267e6b829e21fc7a66a13878443e31a03a7133879"
            },
            "downloads": -1,
            "filename": "basicpy-1.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "edb866e4a3b1596b17e09d24facabbd9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 27557,
            "upload_time": "2024-04-22T17:50:02",
            "upload_time_iso_8601": "2024-04-22T17:50:02.669406Z",
            "url": "https://files.pythonhosted.org/packages/f3/f6/929b424c462de72654907b79010627892edc76260710e46fbb8914aa43f8/basicpy-1.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-22 17:50:02",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "peng-lab",
    "github_project": "BaSiCPy",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "basicpy"
}
        
Elapsed time: 0.24307s