VisDrone.yaml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. # YOLOv5 🚀 by Ultralytics, AGPL-3.0 license
  2. # VisDrone2019-DET dataset https://github.com/VisDrone/VisDrone-Dataset by Tianjin University
  3. # Example usage: python train.py --data VisDrone.yaml
  4. # parent
  5. # ├── yolov5
  6. # └── datasets
  7. # └── VisDrone ← downloads here (2.3 GB)
  8. # Train/val/test sets as 1) dir: path/to/imgs, 2) file: path/to/imgs.txt, or 3) list: [path/to/imgs1, path/to/imgs2, ..]
  9. path: ../datasets/VisDrone # dataset root dir
  10. train: VisDrone2019-DET-train/images # train images (relative to 'path') 6471 images
  11. val: VisDrone2019-DET-val/images # val images (relative to 'path') 548 images
  12. test: VisDrone2019-DET-test-dev/images # test images (optional) 1610 images
  13. # Classes
  14. names:
  15. 0: pedestrian
  16. 1: people
  17. 2: bicycle
  18. 3: car
  19. 4: van
  20. 5: truck
  21. 6: tricycle
  22. 7: awning-tricycle
  23. 8: bus
  24. 9: motor
  25. # Download script/URL (optional) ---------------------------------------------------------------------------------------
  26. download: |
  27. from utils.general import download, os, Path
  28. def visdrone2yolo(dir):
  29. from PIL import Image
  30. from tqdm import tqdm
  31. def convert_box(size, box):
  32. # Convert VisDrone box to YOLO xywh box
  33. dw = 1. / size[0]
  34. dh = 1. / size[1]
  35. return (box[0] + box[2] / 2) * dw, (box[1] + box[3] / 2) * dh, box[2] * dw, box[3] * dh
  36. (dir / 'labels').mkdir(parents=True, exist_ok=True) # make labels directory
  37. pbar = tqdm((dir / 'annotations').glob('*.txt'), desc=f'Converting {dir}')
  38. for f in pbar:
  39. img_size = Image.open((dir / 'images' / f.name).with_suffix('.jpg')).size
  40. lines = []
  41. with open(f, 'r') as file: # read annotation.txt
  42. for row in [x.split(',') for x in file.read().strip().splitlines()]:
  43. if row[4] == '0': # VisDrone 'ignored regions' class 0
  44. continue
  45. cls = int(row[5]) - 1
  46. box = convert_box(img_size, tuple(map(int, row[:4])))
  47. lines.append(f"{cls} {' '.join(f'{x:.6f}' for x in box)}\n")
  48. with open(str(f).replace(os.sep + 'annotations' + os.sep, os.sep + 'labels' + os.sep), 'w') as fl:
  49. fl.writelines(lines) # write label.txt
  50. # Download
  51. dir = Path(yaml['path']) # dataset root dir
  52. urls = ['https://github.com/ultralytics/yolov5/releases/download/v1.0/VisDrone2019-DET-train.zip',
  53. 'https://github.com/ultralytics/yolov5/releases/download/v1.0/VisDrone2019-DET-val.zip',
  54. 'https://github.com/ultralytics/yolov5/releases/download/v1.0/VisDrone2019-DET-test-dev.zip',
  55. 'https://github.com/ultralytics/yolov5/releases/download/v1.0/VisDrone2019-DET-test-challenge.zip']
  56. download(urls, dir=dir, curl=True, threads=4)
  57. # Convert
  58. for d in 'VisDrone2019-DET-train', 'VisDrone2019-DET-val', 'VisDrone2019-DET-test-dev':
  59. visdrone2yolo(dir / d) # convert VisDrone annotations to YOLO labels