Bayesian MEF
Bayesian multi-exposure image fusion (MEF) is a general purpose MEF algorithm suitable for any imaging scheme requiring high dynamic range (HDR) treatment. Implementation of the algorithm in the context of ptychography has been published as "Bayesian multi-exposure image fusion for robust high dynamic range preprocessing in ptychography".
To install the package and its dependencies,
pip install bayes_mef
Usage
A minimal example demonstrating the usage of BayesianMEF by simulating some data.
from bayes_mef import BayesianMEF
from skimage.data import camera
import numpy as np
# simulation params
truth = camera()
background = 60 # some background
times = np.array([0.1, 1, 10]) # exposure times or equivalently flux factors
threshold = 1500 # detector limit
# poisson data based on image formation model that is overexposed
data = [np.random.poisson(time * truth + background) for time in times]
data_saturated = np.clip(data, None, threshold, dtype="float")
# Bayesian MEF with optional field `update_fluxes`. Set it to `True` when
# flux factors (exposure times) are not accurately known.
mef_em = BayesianMEF(data_saturated, threshold, times, background, update_fluxes=False)
mef_em.run(n_iter=100)
fused_im = mef_em.fused_image.copy()
Under scripts/ directory, MEF with ptychographic data and subsequent reconstructions used in the publication can be tested. These are based on the package ptylab that can be installed additionally.
pip install git+https://github.com/PtyLab/PtyLab.py.git@main
For faster reconstructions using GPU, please install cupy as given under its installation guide.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file bayes_mef-0.1.2.tar.gz.
File metadata
- Download URL: bayes_mef-0.1.2.tar.gz
- Upload date:
- Size: 10.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
poetry/1.7.1 CPython/3.11.5 Linux/6.5.0-25-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5e6dff1dc49a55a486c8036993210fcd0a50a25b6d5fab44c1cf30603b3a823
|
|
| MD5 |
4c1d7324695ca1c768db7e29935903f4
|
|
| BLAKE2b-256 |
1c45b6f3c3bd17eb98ac071bd18819ca53a328d4acef09cab51f2b7bf9c82bac
|
File details
Details for the file bayes_mef-0.1.2-py3-none-any.whl.
File metadata
- Download URL: bayes_mef-0.1.2-py3-none-any.whl
- Upload date:
- Size: 11.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
poetry/1.7.1 CPython/3.11.5 Linux/6.5.0-25-generic
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
db3f47fff356da940672b9308dffa8b7e63436d67e612dc3d6877b4d1ff02b88
|
|
| MD5 |
ceab19678e3ec863de243178b4ceb605
|
|
| BLAKE2b-256 |
abc67409b8da5f1c1e58cc7cfe558f9fe99f4c0a6a9cc850fe217f1eb338f1eb
|