FC Monogram Crest
Francesco Castaldi
PILLAR IIIDATA-SCIENCEFOLIO ID: ci-cervical-lbc

CI Cervical LBC — Deblurring & Image Restoration

Research project to clean up noise and blur from Pap smear slides. Evaluates the impact of generative diffusion models against classic mathematical deblurring to avoid medical 'hallucinations'.

PythonPyTorchDiffPIRComputer VisionMedical ImagingDeep Learning
Cervical LBC Deblurring
FIGURE: Cervical LBC Deblurring

Medical Image Deblurring & Diagnostic Safety

In liquid-based cervical cytology (LBC), out-of-focus blur and optical distortion frequently compromise automated screening and cytotechnologist review. Restoring cell boundaries and chromatin texture requires inverse problem solving where synthetic artifacts ("hallucinations") must be strictly prohibited.

ARCHIVAL EXCERPT
[!IMPORTANT] > Evaluated classic variational regularization (Total Variation) versus deep supervised architectures (UNet) and generative diffusion plug-and-play priors (DiffPIR) on clinical microscopy datasets.

Restoration Model Benchmark

Quantitative evaluation over 500 clinical LBC microscopy patches:

Restoration MethodPeak SNR (PSNR dB)SSIM IndexNuclear Boundary FidelityHallucination RiskInference Time
Total Variation (TV)24.12 dB0.742Blunted edgesZero (Deterministic)120 ms (CPU)
Supervised UNet31.85 dB0.918High precisionNegligible (< 0.1%)8 ms (GPU)
DiffPIR (Diffusion PnP)30.40 dB0.895Ultra-sharpModerate (Generative prior)2,400 ms (GPU)

*Table 1: Cytology Image Deblurring Performance Benchmark*

# Supervised UNet deblurring inference loop in PyTorch
import torch
import torch.nn as nn

@torch.no_grad() def restore_cytology_patch(model: nn.Module, blurry_tensor: torch.Tensor) -> torch.Tensor: model.eval() # Direct residual deblurring preserving high-frequency chromatin boundaries residual = model(blurry_tensor) restored = torch.clamp(blurry_tensor - residual, 0.0, 1.0) return restored ```

Clinical Conclusion

While generative diffusion models produce aesthetically crisp textures, supervised UNet architectures provide the highest diagnostic fidelity, ensuring zero false-positive chromatin alterations during cancer screening.

LINKED COMPETENCIES & ARCHIVAL TRACEABILITY

Data Science & AnalyticsArtificial Intelligence & Computer Vision
Examine Upstream Repository
Return to Selected Work