ricky-696 / ROADpp_challenge_ICCV2023

ICCV2023 Workshop: The ROAD++ Challenge Track1 Winner (1st)
https://sites.google.com/view/road-plus-plus/challenge?authuser=0#h.zbmjfm1sbx03
MIT License
2 stars 0 forks source link

ROADpp_challenge_ICCV2023

ICCV2023 Workshop: The ROAD++ Challenge Track1 Winner (1st)

File Tree

├── demo_pic_and_video
├── ROAD_Waymo_Baseline
├── Road-waymo-dataset
├── runs (Save model's weight)
│   ├── action
│   ├── detect
│   └── location
├── Track1
├── Track2
├── utils

Track1 Full Pipeline

demo

Track2 Full Pipeline

demo

Environment Setup

conda create --name ROADpp python>=3.10
conda activate ROADpp
pip install -r requirement.txt

Pre-train Weight

Download Link (release soon)

├── runs (Save model's weight)
│   ├── action
│   ├── detect
│   └── location

Quick Start

You need to first understand how to configure the YAML file for YOLOv8, as well as the dataset format.

Example for Two branch Track1

cd ROADpp_challenge_ICCV2023
python detect.py --video_path 'xxx' --yolo_path 'xxx' --two_branch True --major_path 'xxx' rare_path 'xxx' --pkl_name 'xxx' --save_res 'xxx'

Config

ToDo