Datasets:
Dataset Card for Ariel Scans
This is a FiftyOne dataset with 6546 samples.
Installation
If you haven't already, install FiftyOne:
pip install -U fiftyone
Usage
import fiftyone as fo
from fiftyone.utils.huggingface import load_from_hub
# Load the dataset
# Note: other available arguments include 'max_samples', etc
dataset = load_from_hub("Voxel51/ariel_scans")
# Launch the App
session = fo.launch_app(dataset)
Ariel Scans: The Great Desert Plane Hunt
A turbine RC plane went down in the desert. Its builder flew a mapping grid over the search area, came home with thousands of nearly-identical sand tiles, and posted a $50 bounty on Reddit to anyone who could find it. This is that haystack β now with a few embeddings, a homemade computer-vision plugin, and ten saved views pointed squarely at the needle.
Dataset Details
Dataset Description
Ariel_Scans is an aerial search-and-rescue dataset for exactly one missing object: a
self-built turbine RC plane that crashed somewhere in the desert. The original pilot ran
an automated mapping grid (the kind you'd use for drone photogrammetry) over the suspected
crash zone, producing a wall of overhead imagery where every frame looks heartbreakingly
like the last: scrub, sand, the occasional shadow, and β somewhere in there β a small dark
carbon-fiber airframe lying flat on the ground.
The Reddit post mentioned "about 3,000 high-res images." The grid actually came back with 6,546, because the mapping rig captured two sensors at once: a high-resolution RGB camera and a low-resolution thermal/IR camera. So it's really ~3,274 RGB frames and ~3,272 thermal frames, paired tile-for-tile across the same ground.
This release ships the raw survey plus the full FiftyOne analysis layer built to crack
it: CLIP embeddings, a similarity index, a 2D UMAP map, candidate detections from the
plane_finder plugin (a classic dark-blob / elongated-shape / smooth-interior detector),
per-detection geometry features, patch embeddings, uniqueness scores, and ten saved views
that triage 6,546 frames down to a handful worth a human's eyeballs.
Curated by: Harpreet Sahota (Developer Advocate, Voxel51), on behalf of one optimistic Redditor
Funded by: A $50 PayPal/CashApp/Zelle bounty and an unreasonable amount of curiosity
Shared by: Harpreet Sahota / Voxel51
Language(s) (NLP): en (the field names and this card; the imagery does not speak)
License: Imagery courtesy of the original poster; please treat it as the OP's and use it in the good-natured spirit of "help me find my plane." Code and annotations: MIT.
Dataset Sources
- Repository:
harpreetsahota204/ariel_scanson the Hugging Face Hub - Paper: None. This is, scientifically speaking, a guy who lost his plane.
- Demo: The accompanying notebook,
Finding_a_Needle_in_the_Desert.ipynb, and theplane_finderplugin
Uses
Direct Use
Find the plane. This is the canonical task. Open
candidates_by_scoreortop_shortlistin the FiftyOne App and start scrolling from the top.A teaching dataset for needle-in-a-haystack visual search: embeddings, similarity search, uniqueness/anomaly ranking, and 2D embedding visualizations on imagery that is punishingly self-similar.
A worked example of turning a classical OpenCV detector into a FiftyOne plugin and using its output to drive dataset views.
Benchmarking small-object / low-contrast detection in aerial imagery, including the RGB-vs-thermal sensor split.
A friendly sandbox for patch embeddings (
to_patches+ per-crop embeddings, similarity, and uniqueness).
Out-of-Scope Use
It is not a general-purpose aircraft, drone, or object-detection benchmark. There is essentially one object of interest, it may appear in only a handful of frames, and the "labels" here are unverified machine-generated candidates, not ground truth.
Not a surveillance or people-finding dataset β it's empty desert by design. Please don't repurpose the workflow to track individuals.
Don't treat
plane_candidatesas gold annotations. Most of them are bushes, rocks, and shadows that happen to be dark and vaguely plane-shaped. That's the whole problem.
Dataset Structure
A FiftyOne image dataset of 6,546 samples and no train/test split (when you're looking for your plane, every frame is the test set).
Sensor mix (de-facto split):
| Sensor | Resolution | Count |
|---|---|---|
| RGB | 4624 Γ 3472 | ~3,274 |
| Thermal / IR | 640 Γ 512 | ~3,272 |
Sample fields:
filepath,metadataβ standard image metadata (width, height, channels, size, mime).clip_embeddingsβ CLIP (open-clip-torch) embedding of the whole frame.dark_maskβ aHeatmapfrom the plugin's calibration operator showing what counts as "dark."plane_candidatesβDetectionsof plane-like blobs. Each detection carries geometry features used for scoring:confidence,solidity,rect_fill,rect_aspect,area,interior_std,interior_mean,rect_angle,bbox_diag, pluspatch_embeddingsandpatch_uniqueness(see below). Across the dataset there are 132,531 candidate detections; 3,947 frames have at least one.max_plane_candidates_scoreβ the best candidate score per frame, for ranking.uniquenessβ frame-level visual uniqueness (anomaly-ish) score.
Saved views (the actual product):
candidates_by_scoreβ every frame with a candidate, ranked by best score.top_shortlistβ the top 100. Start here.high_confidenceβ only the strong boxes (confidence > 0.6).carbon_likeβ elongated and smooth-surfaced candidates (the airframe signature).best_geometryβ solid, box-filling, elongated, sensibly sized.review_bandβ the mid-scoring "maybe" pile, so nothing borderline slips through.thermal_framesβ the small IR frames, which behave differently under the detector.unusual_candidatesβ candidate frames ranked by how visually unusual they are.plane_patchesβ one crop per candidate detection (read-only patches view).unusual_patchesβ those crops ranked by per-crop unusualness; the real airframe should stand apart from the endless bush/shadow patches.
Brain runs: clip_sim, clip_viz, patch_sim, patch_viz, uniqueness.
Dataset Creation
Curation Rationale
Someone on the internet lost something they built with their own hands and offered fifty bucks for help finding it. That is a wholesome problem, and it also happens to be a perfect illustration of why visual-AI tooling exists: a human cannot reliably scan 6,546 look-alike desert tiles, but embeddings + a cheap detector + good views can shrink that to a coffee's worth of reviewing. The dataset was curated to (a) actually help find the plane and (b) serve as a charming, end-to-end teaching example.
Source Data
Data Collection and Processing
The raw imagery was captured by the original pilot flying an automated aerial mapping grid (overlapping nadir passes) over the suspected crash area with a dual RGB + thermal payload. Processing in this release was done with FiftyOne:
- Loaded the images from disk and computed metadata.
- Computed CLIP embeddings, a similarity index (
clip_sim), and a UMAP visualization (clip_viz). - Ran the
plane_finderplugin (dark thresholding β morphological closing β contour analysis β geometry scoring) to writeplane_candidatesandmax_plane_candidates_score. - Computed frame-level
uniqueness. - Computed patch embeddings on each candidate crop, indexed them (
patch_sim,patch_viz), and derived a per-croppatch_uniqueness(mean cosine distance to nearest neighbors). - Built and saved the ten review views above.
Who are the source data producers?
One RC-aircraft hobbyist who builds their own turbine planes, owns or borrowed a mapping drone, and has a healthy tolerance for desert sun. Identity intentionally left as the anonymous Reddit handle that started it all.
Annotations
Annotation process
There are no hand-drawn annotations. The plane_candidates "annotations" are
machine-generated candidate detections produced entirely by the plane_finder plugin β
an unsupervised, rule-based OpenCV detector. No human drew a box; the algorithm flagged
anything dark, elongated, and smooth, then scored it. Consider every box a hypothesis,
not a label.
Who are the annotators?
A ~200 lines of OpenCV and the plane_finder FiftyOne plugin. It has never seen a plane,
has no opinions, and will confidently box a shadow.
Personal and Sensitive Information
It's overhead imagery of empty desert. No people, faces, license plates, or homes were the subject of the survey. Precise GPS/EXIF geolocation may be embedded in the original files; if you'd rather not advertise the exact patch of desert, strip EXIF before redistributing.
Bias, Risks, and Limitations
- Massive class imbalance of one. There may be only a handful of frames (or zero!) containing the actual plane among 6,546. Precision/recall metrics are nearly meaningless without verified ground truth.
- The detector is dumb on purpose. It keys on "dark + elongated + smooth," which also describes bushes, tire tracks, rocks, and β famously β shadows.
- The
0000trap. The original poster warned that one image (renamed0000) contains a shadow on the top-left that looks exactly like the plane; they drove out and checked in person. It is a known, confirmed false positive and a great sanity check for any model. - Sensor domain gap. RGB and thermal frames have wildly different resolution, contrast, and noise characteristics; a threshold tuned on one will misbehave on the other.
- No guarantee of success. The plane might be under a bush, buried in sand, or simply outside the flown grid. The data can only narrow the search, not promise a happy ending.
Recommendations
Users should treat plane_candidates as triage hints, not truth. Start from
top_shortlist and carbon_like, keep the RGB and thermal_frames reviews separate,
lean on patch_sim to pull look-alikes once you spot a promising crop, and use 0000 as
your "can my eye/model tell the difference?" calibration sample. And if you find it: the OP
still owes someone $50.
Citation
BibTeX:
@misc{lostturbineplane,
author = {{u/ReturnAdventurous179}},
title = {{[Need Help] Searching 3{,}000 aerial images to locate a downed turbine RC plane}},
howpublished = {Reddit post},
year = {2025},
note = {``I built the plane myself and it would be sick to find it.
I'll paypal/cashapp/zelle etc \$50 bucks to whoever finds it lol.''
Warning: image ``0000'' is a shadow that looks EXACTLY like the plane.},
url = {https://www.reddit.com/r/computervision/comments/1u76ln1/need_help_searching_3000_aerial_images_to_locate}
}
Glossary
- Candidate β a machine-flagged blob that might be the plane. Usually isn't.
solidityβ contour area Γ· convex-hull area. ~1.0 means a clean, solid shape (good); low means ragged or hollow (vegetation).rect_fillβ how much of the candidate's minimum-area rectangle the blob actually fills. High = compact, rectangular, airframe-like.rect_aspectβ length-to-width ratio of that rectangle. A plane on the ground is elongated, so higher is more interesting.bbox_diagβ bounding-box diagonal in pixels; a rough size gate.interior_std/interior_meanβ pixel statistics inside the blob. Low std = smooth, uniform surface (raw carbon fiber), which is what we want.max_plane_candidates_scoreβ the best candidate score in a frame; the primary ranking signal.uniquenessβ frame-level visual distinctiveness; the plane should be an anomaly in a sea of sameness.patch_uniquenessβ the same idea, computed per candidate crop from patch embeddings.dark_maskβ the calibration heatmap showing which pixels the detector considers "dark."
More Information
The full story, code, and review workflow live in the companion notebook
(Finding_a_Needle_in_the_Desert.ipynb) and blog post, and the detector ships as the
open-source plane_finder FiftyOne
plugin. If you actually locate the aircraft, please tell the OP, collect your $50, and post
the coordinates so the rest of us can sleep.
Dataset Card Authors
Harpreet Sahota (Voxel51), with narrative contributions from an anonymous Reddit pilot and a great deal of sand.
Dataset Card Contact
Harpreet Sahota β @harpreetsahota204 on GitHub, or via the Voxel51 community Discord.
- Downloads last month
- 1,534
