Evaluates a deep learning autoencoder's ability to reconstruct high-quality images from undersampled or noisy data across synthetic, MRI, and CT domains. It probes robustness to impulse noise, Fourier undersampling, and sparse tomographic projections compared to compressed sensing and standard autoencoders. Use when the user wants to benchmark on CIFAR-10, Cardiac Perfusion MRI, Larynx & Cardiac MRI, Speech MRI, ULB CT Dataset, or asks about evaluating this task. Reports NMSE.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill rodeo-reconstruction-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Rodeo Reconstruction Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-rodeo-reconstruction-eval)More formats (shields.io, HTML) on the badges page.
---
name: rodeo-reconstruction-eval
description: Evaluates a deep learning autoencoder's ability to reconstruct high-quality images from undersampled or noisy data across synthetic, MRI, and CT domains. It probes robustness to impulse noise, Fourier undersampling, and sparse tomographic projections compared to compressed sensing and standard autoencoders. Use when the user wants to benchmark on CIFAR-10, Cardiac Perfusion MRI, Larynx & Cardiac MRI, Speech MRI, ULB CT Dataset, or asks about evaluating this task. Reports NMSE.
metadata:
skill_kind: dataset_eval
source_arxiv: 1912.07519
bibtex_key: mehta2019rodeo
confidence: high
---
# rodeo-reconstruction-eval
> RODEO: Robust DE-aliasing autoencOder for Real-time Medical Image Reconstruction — Mehta et al. (2019) (arXiv:1912.07519, 2019)
## What this evaluates
Evaluates a deep learning autoencoder's ability to reconstruct high-quality images from undersampled or noisy data across synthetic, MRI, and CT domains. It probes robustness to impulse noise, Fourier undersampling, and sparse tomographic projections compared to compressed sensing and standard autoencoders.
## Datasets
- **CIFAR-10** — total 60000; splits: train (50000), test (10000)
- **Cardiac Perfusion MRI** — total ?; splits: test (-1)
- **Larynx & Cardiac MRI** — total ?; splits: test (-1)
- **Speech MRI** — total ?; splits: test (-1)
- **ULB CT Dataset** — total 1001; splits: test (1001)
## Metrics
- `NMSE` **(primary)** — range: [0, 1]
- Normalised Mean Squared Error: ||x - x_hat||^2 / ||x||^2, where x is the ground truth and x_hat is the reconstruction.
- `SSIM` — range: [0, 1]
- Structural Similarity Index measuring luminance, contrast, and structure similarity between reconstructed and ground truth images.
- `PSNR` — range: dB
- Peak Signal-to-Noise Ratio in decibels: 10 * log10(MAX_I^2 / MSE), where MAX_I is the maximum possible pixel value.
## Input / output format
**Input**: Grayscale images or image patches (e.g., 32x32) derived from zero-filled undersampled K-space (MRI) or filtered back-projection reconstructions (CT), or raw CIFAR-10 images.
**Output**: Reconstructed grayscale images or image patches of the same dimensions as the input.
## Scoring recipe
```python
def compute_nmse(pred, gold):
return np.sum((pred - gold)**2) / np.sum(gold**2)
def compute_ssim(pred, gold):
return ssim(gold, pred, data_range=pred.max() - pred.min())
def compute_psnr(pred, gold):
mse = np.mean((pred - gold)**2)
return 10 * np.log10(1.0 / mse)
```
## Common pitfalls
- MRI/CT evaluation uses a patch-based pipeline; metrics must be computed on aligned, post-processed full images, not raw patch outputs, to avoid blocking artifacts skewing results.
- CIFAR-10 experiments convert color images to grayscale and normalize to [0,1], deviating from standard RGB benchmarks.
- CT undersampling is defined by angular spacing (2.5° vs 5°) rather than fixed projection counts, making direct comparison with methods using different sampling densities tricky.
## Evidence (verbatim from paper)
> The reconstruction accuracy is measured in terms of Normalised Mean Squared Error (NMSE). ... NMSE has been widely used for evaluating CS reconstruction; but it is not the best indicator of visual quality. Structural Similarity index (SSIM) [67] is a metric appropriate choice for evaluating visual quality.
## Citation
```bibtex
@misc{mehta2019rodeo,
title={RODEO: Robust DE-aliasing autoencOder for Real-time Medical Image Reconstruction},
author={Mehta et al. (2019)},
year={2019},
note={arXiv:1912.07519}
}
```
- arXiv: 1912.07519
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!