Evaluates 3D medical image segmentation models on mesoscopic small vessel extraction from ultra-high-resolution (7T) Time-of-Flight Magnetic Resonance Angiography. It probes a model's ability to handle high noise, poor vessel-background contrast, and domain shifts across different MRI acquisition sources. Use when the user wants to benchmark on SMILE-UHURA Challenge Dataset, or asks about evaluating this task. Reports Dice coefficient (DICE).
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill smile-uhura-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Smile Uhura Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-smile-uhura-eval)More formats (shields.io, HTML) on the badges page.
---
name: smile-uhura-eval
description: Evaluates 3D medical image segmentation models on mesoscopic small vessel extraction from ultra-high-resolution (7T) Time-of-Flight Magnetic Resonance Angiography. It probes a model's ability to handle high noise, poor vessel-background contrast, and domain shifts across different MRI acquisition sources. Use when the user wants to benchmark on SMILE-UHURA Challenge Dataset, or asks about evaluating this task. Reports Dice coefficient (DICE).
metadata:
skill_kind: dataset_eval
source_arxiv: 2411.09593
bibtex_key: chatterjee2024smileuhura
confidence: high
---
# smile-uhura-eval
> SMILE-UHURA Challenge -- Small Vessel Segmentation at Mesoscopic Scale from Ultra-High Resolution 7T Magnetic Resonance Angiograms — Chatterjee et al. (2024) (arXiv:2411.09593, 2024)
## What this evaluates
Evaluates 3D medical image segmentation models on mesoscopic small vessel extraction from ultra-high-resolution (7T) Time-of-Flight Magnetic Resonance Angiography. It probes a model's ability to handle high noise, poor vessel-background contrast, and domain shifts across different MRI acquisition sources.
## Datasets
- **SMILE-UHURA Challenge Dataset** — total ?; splits: test_open (-1), test_secret (-1)
## Metrics
- `Dice coefficient (DICE)` **(primary)** — range: [0, 1]
- 2 * |A ∩ B| / (|A| + |B|), where A and B are the predicted and ground truth binary masks. Ranges from 0 to 1, with 1 indicating perfect voxel-wise overlap.
## Input / output format
**Input**: 3D Time-of-Flight Magnetic Resonance Angiography (MRA) volumes acquired at 7T ultra-high field strength.
**Output**: 3D binary segmentation mask indicating vessel voxels (foreground) versus background.
## Scoring recipe
```python
def compute_dice(pred_mask, gt_mask):
intersection = np.sum(pred_mask & gt_mask)
return 2.0 * intersection / (np.sum(pred_mask) + np.sum(gt_mask))
# Protocol:
# 1. Compute Dice per 3D volume.
# 2. Aggregate across all test volumes.
# 3. Report median ± interquartile range (IQR) for each metric.
```
## Common pitfalls
- bAHD is highly sensitive to extreme boundary outliers; the authors had to truncate visualization plots at bAHD ≤ 3 to maintain readability.
- Mutual Information (MUTINF) showed minimal variance across methods, making it a poor discriminator for segmentation quality in this domain.
- The 'Secret Dataset' intentionally tests generalization to a different acquisition source, so high open-test performance does not guarantee strong secret-test results.
## Evidence (verbatim from paper)
> The performance of various deep learning methods was evaluated on the open dataset, comprising MRI volumes held out from the training set but sharing identical properties. The metrics assessed included the Dice coefficient (DICE), Jaccard index (JACRD), volumetric similarity coefficient (VOLSMTY), mutual information (MUTINF), and balanced average Hausdorff distance (bAHD, or bAVD according to the EvaluateSegmentation pipeline), each reported as median ± interquartile range (IQR) in Table [3], and shown in Figures [1],[2],[3],[4], and [5].
## Citation
```bibtex
@misc{chatterjee2024smileuhura,
title={SMILE-UHURA Challenge -- Small Vessel Segmentation at Mesoscopic Scale from Ultra-High Resolution 7T Magnetic Resonance Angiograms},
author={Chatterjee et al. (2024)},
year={2024},
note={arXiv:2411.09593}
}
```
- arXiv: 2411.09593
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!