This plugin is a python implementation of three different algorithms for bleach correction and can be used to correct time-lapse images that lose intensity due to photobleaching. The implementation is based on the ImageJ plugin Bleach Corrector by Miura et al. All methods work with 2D and 3D time series.
Napari Bleach correction is easy to use:
This is the simplest method. Every pixel in a frame is multiplied by the ratio from the mean intensity of the first frame to that of the i-th frame.
Assumptions:
- the mean intensity is constant through the time-lapse
- the background fluorescence is the same for every pixel and frame
Parameters:
- Background Intensity: Must be estimated
Drift estimation of fluorescence signal by fitting the mean intensity to an exponential curve. The image is corrected by the decay in the normalized exponential function.
Assumptions:
- time intervals between frames are equal
Parameters:
- Exponential Curve: Bleaching can be modelled as a mono- or bi-exponential curve
Bleaching correction by matching histograms to a reference image. The correct pixel values can be calculated by the cumulative distribution function of a frame and its reference frame. This method introduced by Miura et al.
Parameters:
- Reference Frame: Match the frame's histogram with the first our neighbor frame
The Histogram Matching method using the neighbor frame as reference is a good start to correct bleaching. All methods are described in detail in Miura et al.
- Miura K. Bleach correction ImageJ plugin for compensating the photobleaching of time-lapse sequences. F1000Res. 2020 Dec 21;9:1494. doi: 10.12688/f1000research.27171.1
- Documentation of the ImageJ plugin
This napari plugin was generated with Cookiecutter using @napari's cookiecutter-napari-plugin template.
You can install napari-bleach-correct
via pip:
pip install napari-bleach-correct
To install latest development version :
pip install git+https://github.com/marx-alex/napari-bleach-correct.git
Contributions are very welcome. Tests can be run with tox, please ensure the coverage at least stays the same before you submit a pull request.
Distributed under the terms of the MIT license, "napari-bleach-correct" is free and open source software
If you encounter any problems, please file an issue along with a detailed description.