This code converts YOLO TXT format to PASCAL VOC XML format. It can be used to convert annotations for object detection datasets from one format to another.
convert VOC PASCAL .xml to YOLO .txt root ├──annotations (folder) ├ ├── 1.xml ├ ├── 2.xml ├ └── n.xml ├──images (folder) ├ ├── 1.jpg ├ ├── 2.jpg ├ └── n.jpg └──vocpascal_convert_yolo.py ...