Dataset Viewer
Auto-converted to Parquet Duplicate
Search is not available for this dataset
image
image
End of preview. Expand in Data Studio

Dataset Card for Ariel Scans

image/png

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_scans on 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 the plane_finder plugin

Uses

Direct Use

  • Find the plane. This is the canonical task. Open candidates_by_score or top_shortlist in 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_candidates as 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 β€” a Heatmap from the plugin's calibration operator showing what counts as "dark."
  • plane_candidates β€” Detections of 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, plus patch_embeddings and patch_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:

  1. Loaded the images from disk and computed metadata.
  2. Computed CLIP embeddings, a similarity index (clip_sim), and a UMAP visualization (clip_viz).
  3. Ran the plane_finder plugin (dark thresholding β†’ morphological closing β†’ contour analysis β†’ geometry scoring) to write plane_candidates and max_plane_candidates_score.
  4. Computed frame-level uniqueness.
  5. Computed patch embeddings on each candidate crop, indexed them (patch_sim, patch_viz), and derived a per-crop patch_uniqueness (mean cosine distance to nearest neighbors).
  6. 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 0000 trap. The original poster warned that one image (renamed 0000) 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