Visualization of SARS-CoV-2 Infection Scenes by "Zero-Shot" Enhancements of Electron Microscopy Images
Creators
- 1. Machine Learning Lab, School of Medicine and Health Science, University of Oldenburg, Germany
Description
"Zero-Shot" enhancements of an electron microscopy image of SARS-CoV-2 viruses in Vero cell cultures using probabilistic machine learning algorithms for denoising. The data available here were obtained and are discussed in the paper Visualization of SARS-CoV-2 Infection Scenes by "Zero-Shot" Enhancements of Electron Microscopy Images by Drefs et al. (2021). As input we used data made available by Laue et al. (2021) who recorded images of ultrathin plastic sections using transmission electron microscopy (we downloaded the data from this Zenodo repository). The input image can be found in the H5 file sars-cov2-em-noisy-input.h5. Based on the data, we estimated pixel means and variances during the application of probabilistic machine learning algorithms for denoising. In the H5 files sars-cov2-em-sssc-mean-reconstruction.h5 and sars-cov2-em-sssc-variance-reconstruction.h5 the mean and variance of pixel estimations obtained with a Spike-and-Slab Sparse Coding (SSSC) model can be found (illustrated in Fig. 2 in the paper by Drefs et al. (2021)). In the H5 files sars-cov2-em-gpmm-mean-reconstruction.h5 and sars-cov2-em-gpmm-variance-reconstruction.h5 the mean and variance of pixel estimations obtained with a Gamma Poisson Mixture model (GPMM) can be found (illustrated in Fig. 3 in the paper by Drefs et al. (2021)). The image "sars-cov2-em-sssc-variance-reconstruction-colorized.png" (illustrated in Fig.1 in the paper by Drefs et al. (2021)) was obtained after contrast enhancement and colorization: structures that we manually identified as belonging to a cell were colored in blue, the remainder was colorized in yellow.
The H5 files can be read and visualized in Python as follows:
import glob
import h5py
import matplotlib.pyplot as plt
for file in glob.glob("*.h5"):
with h5py.File(file, "r") as f:
plt.figure()
plt.imshow(f["data"][...], cmap="gray")
plt.title(file)
plt.show()
Notes
Files
sars-cov2-em-sssc-variance-reconstruction-colorized.png
Files
(10.4 MB)
Name | Size | Download all |
---|---|---|
md5:88feeb70a50b5156c37f923135a5edb3
|
2.4 MB | Download |
md5:d49489eccd04f2f59c87d8b72bd72377
|
2.4 MB | Download |
md5:9acd027f1f66c016fcd2efbba37d3b72
|
526.3 kB | Download |
md5:237cde6de13ae1f1728aca1a11a9d9dd
|
2.4 MB | Download |
md5:8224f1878e3212262baac10b3554bc37
|
392.7 kB | Preview Download |
md5:408e3d997fc2b34bd4957ac047fe328d
|
2.4 MB | Download |