CoolFace
Datasetpublic

lin1318/object_detection

Image-to-Video Semantic Retrieval via Object Detection – Dataset Schema This repository contains detection and retrieval results for a Toyota RAV4 2026 review video. Frames were sampled every 5 seconds from the source video. 1. Video Detections File: video_detections.parquet Each row corresponds to a single object detection in a sampled video frame. Schema Column Type Description video_id string YouTube video identifier frame_index int… See the full description on the dataset page: https://huggingface.co/datasets/lin1318/object_detection.

sourceHugging Facemitupdated 7mo agoView on Hugging Face
0likes19downloads
Dataset Card

Image-to-Video Semantic Retrieval via Object Detection – Dataset Schema

This repository contains detection and retrieval results for a Toyota RAV4 2026 review video.

Frames were sampled every 5 seconds from the source video.


1. Video Detections

File: video_detections.parquet

Each row corresponds to a single object detection in a sampled video frame.

Schema

ColumnTypeDescription
video_idstringYouTube video identifier
frame_indexintIndex of the sampled frame (starting from 1)
timestamp_secintTime position in seconds
class_labelstringDetected exterior component label
bounding_boxlist[float]Bounding box in pixel coordinates: [xmin, ymin, xmax, ymax]
confidence_scorefloatYOLO detection confidence score

2. Retrieval Results

File: query_retrieval_results.parquet

Each row corresponds to one retrieved video segment for a given query image and component.

Retrieval is performed by matching detected component labels between query image detections and the video detection index. Contiguous timestamps are merged into segments.

Schema

ColumnTypeDescription
query_indexintIndex of the query image
querytimestampsecintTimestamp of the query image in seconds
video_idstringYouTube video identifier
class_labelstringComponent label used for matching
queryclassconffloatDetection confidence of the component in the query image
start_timestampintStart time (seconds) of the retrieved segment
end_timestampintEnd time (seconds) of the retrieved segment
numberofsupporting_detectionsintNumber of consecutive frames supporting this segment
verify_urlstringYouTube embed URL for manual verification

Verification

Retrieved segments can be verified using:

https://www.youtube.com/embed/{videoid}?start={starttimestamp}&end={end_timestamp}