pawFLIM can be installed from PyPI:
pip install pawflim
or conda-forge:
conda install -c conda-forge pawflim
import numpy as np
from pawflim import pawflim
data = np.empty((3, *shape), dtype=complex)
data[0] = ... # number of photons
data[1] = ... # n-th (conjugated) Fourier coefficient
data[2] = ... # 2n-th (conjugated) Fourier coefficient
denoised = pawflim(data, n_sigmas=2)
phasor = denoised[1] / denoised[0]
Note that we use the standard FLIM definition for the
where
is the
See the notebook in examples for an example with simulated data.