├── .gitignore ├── LICENSE.md ├── README.md ├── batch_split_annotation.py ├── bdd2coco.py ├── coco2voc.py ├── create_list.py ├── draw_labels.py ├── result.jpg ├── show_images.sh ├── split_annotation.py ├── split_attributes.py ├── split_lane_labels.py └── template.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/BDD100k-toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/BDD100k-toolkit/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/BDD100k-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /batch_split_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/BDD100k-toolkit/HEAD/batch_split_annotation.py -------------------------------------------------------------------------------- /bdd2coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/BDD100k-toolkit/HEAD/bdd2coco.py -------------------------------------------------------------------------------- /coco2voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/BDD100k-toolkit/HEAD/coco2voc.py -------------------------------------------------------------------------------- /create_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/BDD100k-toolkit/HEAD/create_list.py -------------------------------------------------------------------------------- /draw_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/BDD100k-toolkit/HEAD/draw_labels.py -------------------------------------------------------------------------------- /result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/BDD100k-toolkit/HEAD/result.jpg -------------------------------------------------------------------------------- /show_images.sh: -------------------------------------------------------------------------------- 1 | python3 draw_labels.py --sets val -------------------------------------------------------------------------------- /split_annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/BDD100k-toolkit/HEAD/split_annotation.py -------------------------------------------------------------------------------- /split_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/BDD100k-toolkit/HEAD/split_attributes.py -------------------------------------------------------------------------------- /split_lane_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/BDD100k-toolkit/HEAD/split_lane_labels.py -------------------------------------------------------------------------------- /template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eric612/BDD100k-toolkit/HEAD/template.yaml --------------------------------------------------------------------------------