Evaluates computer vision models on forest scene understanding, specifically testing instance segmentation, panoptic segmentation, and depth completion in unstructured, densely populated natural environments. Use when the user wants to benchmark on FinnWoodlands, or asks about evaluating this task. Reports mAP@50.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill finnwoodlands-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Finnwoodlands Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-finnwoodlands-eval)More formats (shields.io, HTML) on the badges page.
---
name: finnwoodlands-eval
description: Evaluates computer vision models on forest scene understanding, specifically testing instance segmentation, panoptic segmentation, and depth completion in unstructured, densely populated natural environments. Use when the user wants to benchmark on FinnWoodlands, or asks about evaluating this task. Reports mAP@50.
metadata:
skill_kind: dataset_eval
source_arxiv: 2304.00793
bibtex_key: lagos2023finnwoodlands
confidence: high
---
# finnwoodlands-eval
> FinnWoodlands Dataset — Lagos et al. (2023) (arXiv:2304.00793, 2023)
## What this evaluates
Evaluates computer vision models on forest scene understanding, specifically testing instance segmentation, panoptic segmentation, and depth completion in unstructured, densely populated natural environments.
## Datasets
- **FinnWoodlands** — total 300; splits: train (150), test (50); repo https://github.com/juanb09111/FinnForest.git
## Metrics
- `mAP@50` **(primary)** — range: [0, 1]
- Mean Average Precision at IoU threshold 0.50, averaged across all object classes.
- `mIoU` — range: [0, 1]
- Mean Intersection over Union computed across all semantic classes.
- `PQ` — range: [0, 1]
- Panoptic Quality, calculated as the product of Segmentation Quality (SQ) and Recognition Quality (RQ) for both things and stuff categories.
- `RMSE` — range: other
- Root Mean Square Error between predicted dense depth maps and ground truth depth maps.
## Input / output format
**Input**: RGB images (and sparse depth maps for depth completion models).
**Output**: Instance/Panoptic: bounding boxes, class labels, and pixel-wise segmentation masks. Depth completion: fully dense depth maps.
## Scoring recipe
```python
# Instance/Panoptic Segmentation (COCO standard)
matches = match_predictions_to_ground_truth(predictions, ground_truth, iou_threshold=0.5)
mAP = compute_average_precision(matches)
mIoU = mean(compute_iou(pred_mask, gt_mask) for class in classes)
PQ = compute_panoptic_quality(predictions, ground_truth) # PQ = SQ * RQ
# Depth Completion
RMSE = sqrt(mean((pred_depth - gt_depth)**2))
```
## Common pitfalls
- Dense forest scenes cause tree trunks to overlap closely, making instance segmentation masks inaccurate.
- Sparse depth inputs lack fine structural boundaries, leading to blurred depth completion outputs.
- Panoptic segmentation performance drops significantly on 'things' (individual trees) compared to 'stuff' (background).
## Evidence (verbatim from paper)
> We used the standard COCO evaluation metrics. More specifically, we computed the mean Average Precision (mAP) for evaluating instance segmentation, Mean Intersection over Union (mIoU) for semantic segmentation, Panoptic Quality (PQ), Segmentation Quality (SQ), and Recognition Quality (RQ) for panoptic segmentation. We computed the Root Mean Square Error (RMSE) to evaluate the depth completion task.
## Citation
```bibtex
@misc{lagos2023finnwoodlands,
title={FinnWoodlands Dataset},
author={Lagos et al. (2023)},
year={2023},
note={arXiv:2304.00793}
}
```
- arXiv: 2304.00793
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!