This document summarizes the key statistical and physical equations used in the project.
All formulations are presented in LaTeX and can be rendered directly in GitHub (via MathJax).
In medical imaging, low-dose CT (LDCT) degradation can be simulated as:
- Photon statistics (Poisson noise):
where ( I_{\text{GT}} ) is the ground-truth photon count image.
- Readout noise (Gaussian):
This combination captures stochastic photon arrivals (Poisson) and detector/electronics noise (Gaussian).
To visualize reconstruction fidelity, we use pixel-wise error maps:
where ( I_{\text{pred}} ) is the model prediction and ( I_{\text{GT}} ) is the ground truth.
A common metric for image reconstruction quality:
- ( I_{\max} ): maximum possible intensity value (here = 1.0 since images are normalized).
- Higher PSNR → better reconstruction.
Captures perceptual similarity:
- ( \mu_x, \mu_y ): mean intensities
- ( \sigma_x^2, \sigma_y^2 ): variances
- ( \sigma_{xy} ): covariance
- ( C_1, C_2 ): stability constants
A perceptual metric based on deep features:
- ( \phi_l(\cdot) ): deep feature maps at layer ( l )
- ( w_l ): learned weights
- Lower LPIPS → perceptually closer to GT
For a fixed row/column in the slice:
where ( W ) is the image width.
Sharpness is measured by gradient:
To quantify noise level in a homogeneous region:
- ( I_i ): pixel intensities in the ROI
- ( \mu ): mean intensity
In LDCT, ( \sigma_{\text{ROI}} ) is expected to be higher.
Forward diffusion process (adding Gaussian noise):
with variance schedule ( {\beta_t} ).
Closed-form relation:
where ( \bar{\alpha}t = \prod{s=1}^t (1-\beta_s) ).
The neural network ( \epsilon_\theta ) predicts noise:
with mean:
To provide statistical significance in evaluation metrics:
where ( \theta^{*(b)} ) are bootstrap replicates (resampled metrics).
95% CI is given by the 2.5% and 97.5% quantiles of ( {\theta^{*(b)}}_{b=1}^B ).
- Noise models: Poisson + Gaussian (low-dose simulation).
- Metrics: PSNR, SSIM, LPIPS (quality & perceptual fidelity).
- Analysis tools: error maps, line profiles, ROI noise statistics.
- Generative modeling: forward/reverse diffusion processes.
- Statistical rigor: bootstrap confidence intervals for metrics.
These formulations provide the theoretical backbone of the LDCT reconstruction experiments in this repository.