peoplepeople000/drone-detection
Drone Detection Sample Frames This dataset contains the detections/ sample frames exported from Assignment 3 Task 1. Contents One row per saved frame that contains at least one drone detection Embedded image bytes in a Hugging Face-compatible image column Aggregated detection metadata for all boxes found in that frame Schema video_id: source video identifier frame_index: sampled frame index within the extracted-frame sequence frame_name: saved… See the full description on the dataset page: https://huggingface.co/datasets/peoplepeople000/drone-detection.
Drone Detection Sample Frames
This dataset contains the detections/ sample frames exported from Assignment 3 Task 1.
Contents
- One row per saved frame that contains at least one drone detection
- Embedded image bytes in a Hugging Face-compatible
imagecolumn - Aggregated detection metadata for all boxes found in that frame
Schema
video_id: source video identifierframe_index: sampled frame index within the extracted-frame sequenceframe_name: saved image filenametimestamp_sec: frame timestamp in the source videoimage: struct withbytesandpathimage_path: local path of the saved detection framewidth: frame width in pixelsheight: frame height in pixelsnum_detections: number of detections in the framemax_confidence: highest confidence score in the framemean_confidence: mean confidence score across detections in the framedetections: list of detection structs containing class/confidence/bounding box fieldsdetections_json: JSON copy ofdetectionsfor quick inspection
Generation
The Parquet file is created from detections/detections.csv with:
python scripts/export_hf_detection_dataset.py \
--detections_csv detections/detections.csv \
--output_parquet detections/sample_frames.parquet \
--copy_csv_summary