Evaluates video anomaly detection models on dashcam footage, specifically testing their ability to detect complex traffic anomalies like collisions and skidding in dynamic, real-world driving scenes. It also benchmarks performance against standard pedestrian anomaly detection datasets to highlight challenges posed by moving cameras and contextual anomalies. Use when the user wants to benchmark on RetroTrucks, UCSD Ped1, UCSD Ped2, ShanghaiTech, or asks about evaluating this task. Reports AUC-...
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill retrotrucks-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Retrotrucks Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-retrotrucks-eval)More formats (shields.io, HTML) on the badges page.
---
name: retrotrucks-eval
description: Evaluates video anomaly detection models on dashcam footage, specifically testing their ability to detect complex traffic anomalies like collisions and skidding in dynamic, real-world driving scenes. It also benchmarks performance against standard pedestrian anomaly detection datasets to highlight challenges posed by moving cameras and contextual anomalies. Use when the user wants to benchmark on RetroTrucks, UCSD Ped1, UCSD Ped2, ShanghaiTech, or asks about evaluating this task. Reports AUC-ROC.
metadata:
skill_kind: dataset_eval
source_arxiv: 2004.05261
bibtex_key: haesh2020towards
confidence: high
---
# retrotrucks-eval
> Towards Anomaly Detection in Dashcam Videos — Haesh et al. (2020) (arXiv:2004.05261, 2020)
## What this evaluates
Evaluates video anomaly detection models on dashcam footage, specifically testing their ability to detect complex traffic anomalies like collisions and skidding in dynamic, real-world driving scenes. It also benchmarks performance against standard pedestrian anomaly detection datasets to highlight challenges posed by moving cameras and contextual anomalies.
## Datasets
- **RetroTrucks** — total ?; splits: train (-1), test (-1); repo https://drive.google.com/open?id=1VxFG1jHBiep4R3i_MmvMfKWH11AEFFhu
- **UCSD Ped1** — total ?; splits: train (-1), test (-1)
- **UCSD Ped2** — total ?; splits: train (-1), test (-1)
- **ShanghaiTech** — total ?; splits: train (-1), test (-1)
## Metrics
- `AUC-ROC` **(primary)** — range: [0, 1]
- Frame-wise Area Under the Receiver Operating Characteristic curve. Raw anomaly scores are normalized per video using min-max scaling before computing the metric against ground-truth frame labels.
## Input / output format
**Input**: 32-frame video clips of dimensions 32 × 224 × 224 × 3 (RGB frames).
**Output**: Normalized frame-wise anomaly scores in [0, 1], computed via sliding-window inference.
## Scoring recipe
```python
def compute_auc_roc(raw_scores, labels):
# Normalize scores per video
min_s, max_s = min(raw_scores), max(raw_scores)
norm_scores = [(s - min_s) / (max_s - min_s) for s in raw_scores]
# Compute frame-wise AUC-ROC
return auc_roc(norm_scores, labels)
```
## Common pitfalls
- Anomaly scores must be normalized per video using min-max scaling before computing AUC-ROC; skipping this step skews results across videos of different scales or lengths.
- The evaluation uses a sliding-window of 32 frames with 16-frame overlap, meaning scores are assigned per frame rather than per clip, and the window must be applied consistently across all videos.
## Evidence (verbatim from paper)
> We then use the frame-wise AUC-ROC metric as an evaluation criterion. We then normalize the anomaly scores for each video as below: s_i = (a_i - min_i a_i) / (max_i a_i - min_i a_i), where a_i is the anomaly score of the i^{th} frame.
## Citation
```bibtex
@misc{haesh2020towards,
title={Towards Anomaly Detection in Dashcam Videos},
author={Haesh et al. (2020)},
year={2020},
note={arXiv:2004.05261}
}
```
- arXiv: 2004.05261
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!