CosFly / README.md
hanxuan-autel's picture
Update README.md
175670f verified
metadata
license: apache-2.0
language:
  - zh
  - en
tags:
  - autonomous-navigation
  - drone
  - embodied-ai
  - trajectory
  - carla
  - synthetic-data
pretty_name: CosFly-Track
size_categories:
  - 100<n<1K

CosFly-Track

Overview

This is the pre-release open-source dataset for the paper CosFly-Track: A Large-Scale Multi-Modal Dataset for UAV Visual Tracking via Multi-Constraint Trajectory Optimization. We currently release a filtered local snapshot, and additional data will be published here in future updates.

CosFly-Track contains simulated UAV visual tracking trajectories for target tracking and waypoint prediction. Each trajectory records RGB observations, depth and segmentation artifacts, drone poses, target annotations, camera projection metadata, and navigation waypoints.

The current local snapshot contains:

  • 263 parent trajectory directories.
  • 526 trace directories.
  • 526 trajectory.json files.
  • Trace types observed: ORI and aug_001.
  • Towns observed: Town01, Town02, Town03, Town04, Town05, Town06, Town07, Town10HD and their _Opt variants.

Per-trace counts:

ORI      263
aug_001 263

Each released trajectory contains both a clean ORI trace and an augmented aug_001 trace. ORI is the clean reference trace. aug_001 is an augmented trace with perturbed drone pose and aligned frame indices. The augmented RGB observations and current pose can be used to train robustness, while the clean ORI future waypoints can be used as denoising supervision when desired.

Directory Layout

The filtered upload data is organized by town, parent trajectory, and trace type. The original date level has been removed from the release layout.

CosFly-Track/
├── README_ZH.md
├── data_sample/
│   └── trajectory_<id>/
│       ├── ORI/
│       │   ├── trajectory.json
│       │   └── frames_playback/
│       │       └── frame_<index>/
│       │           ├── rgb.png
│       │           ├── depth.npy
│       │           ├── instance.png
│       │           ├── debug.png
│       │           └── meta.json
│       └── aug_001/
│           ├── trajectory.json
│           ├── perturbation_report.json
│           └── frames_playback/
│               └── frame_<index>/
│                   ├── rgb.png
│                   ├── depth.npy
│                   ├── instance.png
│                   ├── debug.png
│                   └── meta.json
└── data_v7/
    └── Town<id>/
        └── trajectory_<id>/
            ├── augmentation_summary.json
            ├── ORI/
            │   ├── trajectory.json
            │   └── frames_playback/
            │       └── frame_<index>/
            │           ├── rgb.png
            │           ├── depth.npy
            │           ├── instance.png
            │           ├── debug.png
            │           └── meta.json
            └── aug_001/
                ├── trajectory.json
                ├── perturbation_report.json
                └── frames_playback/
                    └── frame_<index>/
                        ├── rgb.png
                        ├── depth.npy
                        ├── instance.png
                        ├── debug.png
                        └── meta.json

Data Files

Each trace contains one trajectory-level JSON file:

data_v7/<Town>/trajectory_<id>/<trace_dir>/trajectory.json

Example:

data_v7/Town01/trajectory_1777083733/aug_001/trajectory.json

Observed top-level keys include:

camera
dataset_format
frames_dir
pedestrian_blueprint
points
schema
schema_version
source
trace_dir

Additional augmentation metadata is stored at the parent trajectory level:

data_v7/<Town>/trajectory_<id>/augmentation_summary.json
data_v7/<Town>/trajectory_<id>/aug_001/perturbation_report.json

The points array stores per-frame annotations. Observed per-point keys include:

drone_pose
index
is_perturbed
nav_waypoint
perturbation
target
timing
world_to_camera

Important nested fields:

  • drone_pose: UAV position and attitude, including x, y, z, pitch, yaw, and roll.
  • target: target actor metadata and visual annotations, including visibility, image coordinates, depth, and 3D bounding box.
  • nav_waypoint: navigation waypoint annotations in both world and image coordinates.
  • world_to_camera: transformation matrix for projecting world coordinates to the camera frame.

Each playback frame directory contains:

  • rgb.png: RGB observation, usually 1280 x 720.
  • depth.npy: depth array in NumPy format.
  • instance.png: instance segmentation image.
  • debug.png: visualization/debug image with overlays.
  • meta.json: per-frame metadata aligned with the corresponding points entry.

Minimal Loader Example

from pathlib import Path
import json
import numpy as np
from PIL import Image

root = Path("data_v7")

for traj_json in sorted(root.glob("Town*/trajectory_*/*/trajectory.json")):
    with traj_json.open("r", encoding="utf-8") as f:
        traj = json.load(f)

    trace_dir = traj.get("trace_dir")
    points = traj.get("points", [])
    if not points:
        continue

    first = points[0]
    frame_index = first["index"]
    frame_dir = traj_json.parent / "frames_playback" / f"frame_{frame_index:05d}"

    rgb = Image.open(frame_dir / "rgb.png")
    depth = np.load(frame_dir / "depth.npy")
    with (frame_dir / "meta.json").open("r", encoding="utf-8") as f:
        meta = json.load(f)

    print(
        trace_dir,
        len(points),
        rgb.size,
        depth.shape,
        first["drone_pose"],
        first["target"],
        meta["frame_id"],
    )
    break

Filtering and Quality Criteria

The current release is generated from filtered v7 data. Main checks include:

  • Integrity checks: ORI and aug_* traces exist, required frame files are readable, and meta.json contains frame_id.
  • Basic trajectory quality: average target-drone distance <= 35, max distance <= 50, max target height <= 2, target visible ratio > 55%, and adjacent drone z-step <= 5.
  • Drone collision checks: drone poses must not enter town-specific map 3D bounding boxes.
  • Target collision checks: target 3D bounding boxes must not overlap map objects beyond the configured threshold.
  • Town-map consistency: map bounding boxes are selected according to the Town name in each trajectory path.

Recommended Quality Checks

Before packaging a public release, run the following checks:

  • Ensure every parent trajectory contains both ORI and aug_001.
  • Ensure every trace has a readable trajectory.json.
  • Ensure every frame referenced by trajectory.json has meta.json, rgb.png, depth.npy, instance.png, and debug.png.
  • Optionally decode all RGB and debug images with Pillow to catch corrupted images.
  • Verify that frame indices between ORI and aug_001 are aligned.
  • Verify that public manifests and JSON metadata do not expose unintended internal machine paths.

Coordinate System

The trajectory fields x, y, z, pitch, yaw, and roll follow CARLA / Unreal-style world coordinates and Euler angles. For Three.js visualization, the project uses the mapping (x, z, -y).

Intended Uses

CosFly-Track can be used for:

  • UAV visual target tracking.
  • Waypoint prediction and visual navigation.
  • Robustness training with augmented UAV poses.
  • Multi-modal learning from RGB, depth, segmentation, and structured trajectory metadata.
  • Trajectory prediction, visibility modeling, and simulator-based evaluation.

Release Checklist

The following items should be finalized before public open-source release:

  • Public Hugging Face dataset URL.
  • Dataset license.
  • Paper authors and final citation.
  • Train/validation/test split manifest.
  • Benchmark metric definition and evaluation script path.
  • Known limitations and simulator domain-gap notes.

Citation

Citation information is pending. Replace this section with the final BibTeX entry before release.

@misc{chen2026cosflyplanmatrixfly,
      title={CosFly: Plan in the Matrix, Fly in the World}, 
      author={Hanxuan Chen and Xiangyue Wang and Songsheng Cheng and Ruilong Ren and Jie Zheng and Shuai Yuan and Tianle Zeng and Hanzhong Guo and Binbo Li and Kangli Wang and Ji Pei},
      year={2026},
      eprint={2605.19120},
      archivePrefix={arXiv},
      primaryClass={cs.RO},
      url={https://arxiv.org/abs/2605.19120}, 
}
@misc{wang2026cosflytracklargescalemultimodaldataset,
      title={CosFly-Track: A Large-Scale Multi-Modal Dataset for UAV Visual Tracking via Multi-Constraint Trajectory Optimization}, 
      author={Xiangyue Wang and Hanxuan Chen and Songsheng Cheng and Ruilong Ren and Jie Zheng and Shuai Yuan and Tianle Zeng and Hanzhong Guo and Kangli Wang and Ji Pei},
      year={2026},
      eprint={2605.17776},
      archivePrefix={arXiv},
      primaryClass={cs.RO},
      url={https://arxiv.org/abs/2605.17776}, 
}