No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

1034 líneas
44KB

  1. # YOLOv5 🚀 by Ultralytics, GPL-3.0 license
  2. """
  3. Dataloaders and dataset utils
  4. """
  5. import glob
  6. import hashlib
  7. import json
  8. import logging
  9. import os
  10. import random
  11. import shutil
  12. import time
  13. from itertools import repeat
  14. from multiprocessing.pool import Pool, ThreadPool
  15. from pathlib import Path
  16. from threading import Thread
  17. from zipfile import ZipFile
  18. import cv2
  19. import numpy as np
  20. import torch
  21. import torch.nn.functional as F
  22. import yaml
  23. from PIL import ExifTags, Image, ImageOps
  24. from torch.utils.data import Dataset
  25. from tqdm import tqdm
  26. from utils.augmentations import Albumentations, augment_hsv, copy_paste, letterbox, mixup, random_perspective
  27. from utils.general import (LOGGER, check_dataset, check_requirements, check_yaml, clean_str, segments2boxes, xyn2xy,
  28. xywh2xyxy, xywhn2xyxy, xyxy2xywhn)
  29. from utils.torch_utils import torch_distributed_zero_first
  30. # Parameters
  31. HELP_URL = 'https://github.com/ultralytics/yolov5/wiki/Train-Custom-Data'
  32. IMG_FORMATS = ['bmp', 'jpg', 'jpeg', 'png', 'tif', 'tiff', 'dng', 'webp', 'mpo'] # acceptable image suffixes
  33. VID_FORMATS = ['mov', 'avi', 'mp4', 'mpg', 'mpeg', 'm4v', 'wmv', 'mkv'] # acceptable video suffixes
  34. NUM_THREADS = min(8, os.cpu_count()) # number of multiprocessing threads
  35. # Get orientation exif tag
  36. for orientation in ExifTags.TAGS.keys():
  37. if ExifTags.TAGS[orientation] == 'Orientation':
  38. break
  39. def get_hash(paths):
  40. # Returns a single hash value of a list of paths (files or dirs)
  41. size = sum(os.path.getsize(p) for p in paths if os.path.exists(p)) # sizes
  42. h = hashlib.md5(str(size).encode()) # hash sizes
  43. h.update(''.join(paths).encode()) # hash paths
  44. return h.hexdigest() # return hash
  45. def exif_size(img):
  46. # Returns exif-corrected PIL size
  47. s = img.size # (width, height)
  48. try:
  49. rotation = dict(img._getexif().items())[orientation]
  50. if rotation == 6: # rotation 270
  51. s = (s[1], s[0])
  52. elif rotation == 8: # rotation 90
  53. s = (s[1], s[0])
  54. except:
  55. pass
  56. return s
  57. def exif_transpose(image):
  58. """
  59. Transpose a PIL image accordingly if it has an EXIF Orientation tag.
  60. Inplace version of https://github.com/python-pillow/Pillow/blob/master/src/PIL/ImageOps.py exif_transpose()
  61. :param image: The image to transpose.
  62. :return: An image.
  63. """
  64. exif = image.getexif()
  65. orientation = exif.get(0x0112, 1) # default 1
  66. if orientation > 1:
  67. method = {2: Image.FLIP_LEFT_RIGHT,
  68. 3: Image.ROTATE_180,
  69. 4: Image.FLIP_TOP_BOTTOM,
  70. 5: Image.TRANSPOSE,
  71. 6: Image.ROTATE_270,
  72. 7: Image.TRANSVERSE,
  73. 8: Image.ROTATE_90,
  74. }.get(orientation)
  75. if method is not None:
  76. image = image.transpose(method)
  77. del exif[0x0112]
  78. image.info["exif"] = exif.tobytes()
  79. return image
  80. def create_dataloader(path, imgsz, batch_size, stride, single_cls=False, hyp=None, augment=False, cache=False, pad=0.0,
  81. rect=False, rank=-1, workers=8, image_weights=False, quad=False, prefix=''):
  82. # Make sure only the first process in DDP process the dataset first, and the following others can use the cache
  83. with torch_distributed_zero_first(rank):
  84. dataset = LoadImagesAndLabels(path, imgsz, batch_size,
  85. augment=augment, # augment images
  86. hyp=hyp, # augmentation hyperparameters
  87. rect=rect, # rectangular training
  88. cache_images=cache,
  89. single_cls=single_cls,
  90. stride=int(stride),
  91. pad=pad,
  92. image_weights=image_weights,
  93. prefix=prefix)
  94. batch_size = min(batch_size, len(dataset))
  95. nw = min([os.cpu_count(), batch_size if batch_size > 1 else 0, workers]) # number of workers
  96. sampler = torch.utils.data.distributed.DistributedSampler(dataset) if rank != -1 else None
  97. loader = torch.utils.data.DataLoader if image_weights else InfiniteDataLoader
  98. # Use torch.utils.data.DataLoader() if dataset.properties will update during training else InfiniteDataLoader()
  99. dataloader = loader(dataset,
  100. batch_size=batch_size,
  101. num_workers=nw,
  102. sampler=sampler,
  103. pin_memory=True,
  104. collate_fn=LoadImagesAndLabels.collate_fn4 if quad else LoadImagesAndLabels.collate_fn)
  105. return dataloader, dataset
  106. class InfiniteDataLoader(torch.utils.data.dataloader.DataLoader):
  107. """ Dataloader that reuses workers
  108. Uses same syntax as vanilla DataLoader
  109. """
  110. def __init__(self, *args, **kwargs):
  111. super().__init__(*args, **kwargs)
  112. object.__setattr__(self, 'batch_sampler', _RepeatSampler(self.batch_sampler))
  113. self.iterator = super().__iter__()
  114. def __len__(self):
  115. return len(self.batch_sampler.sampler)
  116. def __iter__(self):
  117. for i in range(len(self)):
  118. yield next(self.iterator)
  119. class _RepeatSampler:
  120. """ Sampler that repeats forever
  121. Args:
  122. sampler (Sampler)
  123. """
  124. def __init__(self, sampler):
  125. self.sampler = sampler
  126. def __iter__(self):
  127. while True:
  128. yield from iter(self.sampler)
  129. class LoadImages:
  130. # YOLOv5 image/video dataloader, i.e. `python detect.py --source image.jpg/vid.mp4`
  131. def __init__(self, path, img_size=640, stride=32, auto=True):
  132. p = str(Path(path).resolve()) # os-agnostic absolute path
  133. if '*' in p:
  134. files = sorted(glob.glob(p, recursive=True)) # glob
  135. elif os.path.isdir(p):
  136. files = sorted(glob.glob(os.path.join(p, '*.*'))) # dir
  137. elif os.path.isfile(p):
  138. files = [p] # files
  139. else:
  140. raise Exception(f'ERROR: {p} does not exist')
  141. images = [x for x in files if x.split('.')[-1].lower() in IMG_FORMATS]
  142. videos = [x for x in files if x.split('.')[-1].lower() in VID_FORMATS]
  143. ni, nv = len(images), len(videos)
  144. self.img_size = img_size
  145. self.stride = stride
  146. self.files = images + videos
  147. self.nf = ni + nv # number of files
  148. self.video_flag = [False] * ni + [True] * nv
  149. self.mode = 'image'
  150. self.auto = auto
  151. if any(videos):
  152. self.new_video(videos[0]) # new video
  153. else:
  154. self.cap = None
  155. assert self.nf > 0, f'No images or videos found in {p}. ' \
  156. f'Supported formats are:\nimages: {IMG_FORMATS}\nvideos: {VID_FORMATS}'
  157. def __iter__(self):
  158. self.count = 0
  159. return self
  160. def __next__(self):
  161. if self.count == self.nf:
  162. raise StopIteration
  163. path = self.files[self.count]
  164. if self.video_flag[self.count]:
  165. # Read video
  166. self.mode = 'video'
  167. ret_val, img0 = self.cap.read()
  168. if not ret_val:
  169. self.count += 1
  170. self.cap.release()
  171. if self.count == self.nf: # last video
  172. raise StopIteration
  173. else:
  174. path = self.files[self.count]
  175. self.new_video(path)
  176. ret_val, img0 = self.cap.read()
  177. self.frame += 1
  178. s = f'video {self.count + 1}/{self.nf} ({self.frame}/{self.frames}) {path}: '
  179. else:
  180. # Read image
  181. self.count += 1
  182. img0 = cv2.imread(path) # BGR
  183. assert img0 is not None, f'Image Not Found {path}'
  184. s = f'image {self.count}/{self.nf} {path}: '
  185. # Padded resize
  186. img = letterbox(img0, self.img_size, stride=self.stride, auto=self.auto)[0]
  187. # Convert
  188. img = img.transpose((2, 0, 1))[::-1] # HWC to CHW, BGR to RGB
  189. img = np.ascontiguousarray(img)
  190. return path, img, img0, self.cap, s
  191. def new_video(self, path):
  192. self.frame = 0
  193. self.cap = cv2.VideoCapture(path)
  194. self.frames = int(self.cap.get(cv2.CAP_PROP_FRAME_COUNT))
  195. def __len__(self):
  196. return self.nf # number of files
  197. class LoadWebcam: # for inference
  198. # YOLOv5 local webcam dataloader, i.e. `python detect.py --source 0`
  199. def __init__(self, pipe='0', img_size=640, stride=32):
  200. self.img_size = img_size
  201. self.stride = stride
  202. self.pipe = eval(pipe) if pipe.isnumeric() else pipe
  203. self.cap = cv2.VideoCapture(self.pipe) # video capture object
  204. self.cap.set(cv2.CAP_PROP_BUFFERSIZE, 3) # set buffer size
  205. def __iter__(self):
  206. self.count = -1
  207. return self
  208. def __next__(self):
  209. self.count += 1
  210. if cv2.waitKey(1) == ord('q'): # q to quit
  211. self.cap.release()
  212. cv2.destroyAllWindows()
  213. raise StopIteration
  214. # Read frame
  215. ret_val, img0 = self.cap.read()
  216. img0 = cv2.flip(img0, 1) # flip left-right
  217. # Print
  218. assert ret_val, f'Camera Error {self.pipe}'
  219. img_path = 'webcam.jpg'
  220. s = f'webcam {self.count}: '
  221. # Padded resize
  222. img = letterbox(img0, self.img_size, stride=self.stride)[0]
  223. # Convert
  224. img = img.transpose((2, 0, 1))[::-1] # HWC to CHW, BGR to RGB
  225. img = np.ascontiguousarray(img)
  226. return img_path, img, img0, None, s
  227. def __len__(self):
  228. return 0
  229. class LoadStreams:
  230. # YOLOv5 streamloader, i.e. `python detect.py --source 'rtsp://example.com/media.mp4' # RTSP, RTMP, HTTP streams`
  231. def __init__(self, sources='streams.txt', img_size=640, stride=32, auto=True):
  232. self.mode = 'stream'
  233. self.img_size = img_size
  234. self.stride = stride
  235. if os.path.isfile(sources):
  236. with open(sources) as f:
  237. sources = [x.strip() for x in f.read().strip().splitlines() if len(x.strip())]
  238. else:
  239. sources = [sources]
  240. n = len(sources)
  241. self.imgs, self.fps, self.frames, self.threads = [None] * n, [0] * n, [0] * n, [None] * n
  242. self.sources = [clean_str(x) for x in sources] # clean source names for later
  243. self.auto = auto
  244. for i, s in enumerate(sources): # index, source
  245. # Start thread to read frames from video stream
  246. st = f'{i + 1}/{n}: {s}... '
  247. if 'youtube.com/' in s or 'youtu.be/' in s: # if source is YouTube video
  248. check_requirements(('pafy', 'youtube_dl'))
  249. import pafy
  250. s = pafy.new(s).getbest(preftype="mp4").url # YouTube URL
  251. s = eval(s) if s.isnumeric() else s # i.e. s = '0' local webcam
  252. cap = cv2.VideoCapture(s)
  253. assert cap.isOpened(), f'{st}Failed to open {s}'
  254. w = int(cap.get(cv2.CAP_PROP_FRAME_WIDTH))
  255. h = int(cap.get(cv2.CAP_PROP_FRAME_HEIGHT))
  256. self.fps[i] = max(cap.get(cv2.CAP_PROP_FPS) % 100, 0) or 30.0 # 30 FPS fallback
  257. self.frames[i] = max(int(cap.get(cv2.CAP_PROP_FRAME_COUNT)), 0) or float('inf') # infinite stream fallback
  258. _, self.imgs[i] = cap.read() # guarantee first frame
  259. self.threads[i] = Thread(target=self.update, args=([i, cap, s]), daemon=True)
  260. LOGGER.info(f"{st} Success ({self.frames[i]} frames {w}x{h} at {self.fps[i]:.2f} FPS)")
  261. self.threads[i].start()
  262. LOGGER.info('') # newline
  263. # check for common shapes
  264. s = np.stack([letterbox(x, self.img_size, stride=self.stride, auto=self.auto)[0].shape for x in self.imgs])
  265. self.rect = np.unique(s, axis=0).shape[0] == 1 # rect inference if all shapes equal
  266. if not self.rect:
  267. LOGGER.warning('WARNING: Stream shapes differ. For optimal performance supply similarly-shaped streams.')
  268. def update(self, i, cap, stream):
  269. # Read stream `i` frames in daemon thread
  270. n, f, read = 0, self.frames[i], 1 # frame number, frame array, inference every 'read' frame
  271. while cap.isOpened() and n < f:
  272. n += 1
  273. # _, self.imgs[index] = cap.read()
  274. cap.grab()
  275. if n % read == 0:
  276. success, im = cap.retrieve()
  277. if success:
  278. self.imgs[i] = im
  279. else:
  280. LOGGER.warn('WARNING: Video stream unresponsive, please check your IP camera connection.')
  281. self.imgs[i] *= 0
  282. cap.open(stream) # re-open stream if signal was lost
  283. time.sleep(1 / self.fps[i]) # wait time
  284. def __iter__(self):
  285. self.count = -1
  286. return self
  287. def __next__(self):
  288. self.count += 1
  289. if not all(x.is_alive() for x in self.threads) or cv2.waitKey(1) == ord('q'): # q to quit
  290. cv2.destroyAllWindows()
  291. raise StopIteration
  292. # Letterbox
  293. img0 = self.imgs.copy()
  294. img = [letterbox(x, self.img_size, stride=self.stride, auto=self.rect and self.auto)[0] for x in img0]
  295. # Stack
  296. img = np.stack(img, 0)
  297. # Convert
  298. img = img[..., ::-1].transpose((0, 3, 1, 2)) # BGR to RGB, BHWC to BCHW
  299. img = np.ascontiguousarray(img)
  300. return self.sources, img, img0, None, ''
  301. def __len__(self):
  302. return len(self.sources) # 1E12 frames = 32 streams at 30 FPS for 30 years
  303. def img2label_paths(img_paths):
  304. # Define label paths as a function of image paths
  305. sa, sb = os.sep + 'images' + os.sep, os.sep + 'labels' + os.sep # /images/, /labels/ substrings
  306. return [sb.join(x.rsplit(sa, 1)).rsplit('.', 1)[0] + '.txt' for x in img_paths]
  307. class LoadImagesAndLabels(Dataset):
  308. # YOLOv5 train_loader/val_loader, loads images and labels for training and validation
  309. cache_version = 0.6 # dataset labels *.cache version
  310. def __init__(self, path, img_size=640, batch_size=16, augment=False, hyp=None, rect=False, image_weights=False,
  311. cache_images=False, single_cls=False, stride=32, pad=0.0, prefix=''):
  312. self.img_size = img_size
  313. self.augment = augment
  314. self.hyp = hyp
  315. self.image_weights = image_weights
  316. self.rect = False if image_weights else rect
  317. self.mosaic = self.augment and not self.rect # load 4 images at a time into a mosaic (only during training)
  318. self.mosaic_border = [-img_size // 2, -img_size // 2]
  319. self.stride = stride
  320. self.path = path
  321. self.albumentations = Albumentations() if augment else None
  322. try:
  323. f = [] # image files
  324. for p in path if isinstance(path, list) else [path]:
  325. p = Path(p) # os-agnostic
  326. if p.is_dir(): # dir
  327. f += glob.glob(str(p / '**' / '*.*'), recursive=True)
  328. # f = list(p.rglob('*.*')) # pathlib
  329. elif p.is_file(): # file
  330. with open(p) as t:
  331. t = t.read().strip().splitlines()
  332. parent = str(p.parent) + os.sep
  333. f += [x.replace('./', parent) if x.startswith('./') else x for x in t] # local to global path
  334. # f += [p.parent / x.lstrip(os.sep) for x in t] # local to global path (pathlib)
  335. else:
  336. raise Exception(f'{prefix}{p} does not exist')
  337. self.img_files = sorted(x.replace('/', os.sep) for x in f if x.split('.')[-1].lower() in IMG_FORMATS)
  338. # self.img_files = sorted([x for x in f if x.suffix[1:].lower() in IMG_FORMATS]) # pathlib
  339. assert self.img_files, f'{prefix}No images found'
  340. except Exception as e:
  341. raise Exception(f'{prefix}Error loading data from {path}: {e}\nSee {HELP_URL}')
  342. # Check cache
  343. self.label_files = img2label_paths(self.img_files) # labels
  344. cache_path = (p if p.is_file() else Path(self.label_files[0]).parent).with_suffix('.cache')
  345. try:
  346. cache, exists = np.load(cache_path, allow_pickle=True).item(), True # load dict
  347. assert cache['version'] == self.cache_version # same version
  348. assert cache['hash'] == get_hash(self.label_files + self.img_files) # same hash
  349. except:
  350. cache, exists = self.cache_labels(cache_path, prefix), False # cache
  351. # Display cache
  352. nf, nm, ne, nc, n = cache.pop('results') # found, missing, empty, corrupted, total
  353. if exists:
  354. d = f"Scanning '{cache_path}' images and labels... {nf} found, {nm} missing, {ne} empty, {nc} corrupted"
  355. tqdm(None, desc=prefix + d, total=n, initial=n) # display cache results
  356. if cache['msgs']:
  357. logging.info('\n'.join(cache['msgs'])) # display warnings
  358. assert nf > 0 or not augment, f'{prefix}No labels in {cache_path}. Can not train without labels. See {HELP_URL}'
  359. # Read cache
  360. [cache.pop(k) for k in ('hash', 'version', 'msgs')] # remove items
  361. labels, shapes, self.segments = zip(*cache.values())
  362. self.labels = list(labels)
  363. self.shapes = np.array(shapes, dtype=np.float64)
  364. self.img_files = list(cache.keys()) # update
  365. self.label_files = img2label_paths(cache.keys()) # update
  366. n = len(shapes) # number of images
  367. bi = np.floor(np.arange(n) / batch_size).astype(np.int) # batch index
  368. nb = bi[-1] + 1 # number of batches
  369. self.batch = bi # batch index of image
  370. self.n = n
  371. self.indices = range(n)
  372. # Update labels
  373. include_class = [] # filter labels to include only these classes (optional)
  374. include_class_array = np.array(include_class).reshape(1, -1)
  375. for i, (label, segment) in enumerate(zip(self.labels, self.segments)):
  376. if include_class:
  377. j = (label[:, 0:1] == include_class_array).any(1)
  378. self.labels[i] = label[j]
  379. if segment:
  380. self.segments[i] = segment[j]
  381. if single_cls: # single-class training, merge all classes into 0
  382. self.labels[i][:, 0] = 0
  383. if segment:
  384. self.segments[i][:, 0] = 0
  385. # Rectangular Training
  386. if self.rect:
  387. # Sort by aspect ratio
  388. s = self.shapes # wh
  389. ar = s[:, 1] / s[:, 0] # aspect ratio
  390. irect = ar.argsort()
  391. self.img_files = [self.img_files[i] for i in irect]
  392. self.label_files = [self.label_files[i] for i in irect]
  393. self.labels = [self.labels[i] for i in irect]
  394. self.shapes = s[irect] # wh
  395. ar = ar[irect]
  396. # Set training image shapes
  397. shapes = [[1, 1]] * nb
  398. for i in range(nb):
  399. ari = ar[bi == i]
  400. mini, maxi = ari.min(), ari.max()
  401. if maxi < 1:
  402. shapes[i] = [maxi, 1]
  403. elif mini > 1:
  404. shapes[i] = [1, 1 / mini]
  405. self.batch_shapes = np.ceil(np.array(shapes) * img_size / stride + pad).astype(np.int) * stride
  406. # Cache images into memory for faster training (WARNING: large datasets may exceed system RAM)
  407. self.imgs, self.img_npy = [None] * n, [None] * n
  408. if cache_images:
  409. if cache_images == 'disk':
  410. self.im_cache_dir = Path(Path(self.img_files[0]).parent.as_posix() + '_npy')
  411. self.img_npy = [self.im_cache_dir / Path(f).with_suffix('.npy').name for f in self.img_files]
  412. self.im_cache_dir.mkdir(parents=True, exist_ok=True)
  413. gb = 0 # Gigabytes of cached images
  414. self.img_hw0, self.img_hw = [None] * n, [None] * n
  415. results = ThreadPool(NUM_THREADS).imap(lambda x: load_image(*x), zip(repeat(self), range(n)))
  416. pbar = tqdm(enumerate(results), total=n)
  417. for i, x in pbar:
  418. if cache_images == 'disk':
  419. if not self.img_npy[i].exists():
  420. np.save(self.img_npy[i].as_posix(), x[0])
  421. gb += self.img_npy[i].stat().st_size
  422. else:
  423. self.imgs[i], self.img_hw0[i], self.img_hw[i] = x # im, hw_orig, hw_resized = load_image(self, i)
  424. gb += self.imgs[i].nbytes
  425. pbar.desc = f'{prefix}Caching images ({gb / 1E9:.1f}GB {cache_images})'
  426. pbar.close()
  427. def cache_labels(self, path=Path('./labels.cache'), prefix=''):
  428. # Cache dataset labels, check images and read shapes
  429. x = {} # dict
  430. nm, nf, ne, nc, msgs = 0, 0, 0, 0, [] # number missing, found, empty, corrupt, messages
  431. desc = f"{prefix}Scanning '{path.parent / path.stem}' images and labels..."
  432. with Pool(NUM_THREADS) as pool:
  433. pbar = tqdm(pool.imap(verify_image_label, zip(self.img_files, self.label_files, repeat(prefix))),
  434. desc=desc, total=len(self.img_files))
  435. for im_file, l, shape, segments, nm_f, nf_f, ne_f, nc_f, msg in pbar:
  436. nm += nm_f
  437. nf += nf_f
  438. ne += ne_f
  439. nc += nc_f
  440. if im_file:
  441. x[im_file] = [l, shape, segments]
  442. if msg:
  443. msgs.append(msg)
  444. pbar.desc = f"{desc}{nf} found, {nm} missing, {ne} empty, {nc} corrupted"
  445. pbar.close()
  446. if msgs:
  447. logging.info('\n'.join(msgs))
  448. if nf == 0:
  449. logging.info(f'{prefix}WARNING: No labels found in {path}. See {HELP_URL}')
  450. x['hash'] = get_hash(self.label_files + self.img_files)
  451. x['results'] = nf, nm, ne, nc, len(self.img_files)
  452. x['msgs'] = msgs # warnings
  453. x['version'] = self.cache_version # cache version
  454. try:
  455. np.save(path, x) # save cache for next time
  456. path.with_suffix('.cache.npy').rename(path) # remove .npy suffix
  457. logging.info(f'{prefix}New cache created: {path}')
  458. except Exception as e:
  459. logging.info(f'{prefix}WARNING: Cache directory {path.parent} is not writeable: {e}') # path not writeable
  460. return x
  461. def __len__(self):
  462. return len(self.img_files)
  463. # def __iter__(self):
  464. # self.count = -1
  465. # print('ran dataset iter')
  466. # #self.shuffled_vector = np.random.permutation(self.nF) if self.augment else np.arange(self.nF)
  467. # return self
  468. def __getitem__(self, index):
  469. index = self.indices[index] # linear, shuffled, or image_weights
  470. hyp = self.hyp
  471. mosaic = self.mosaic and random.random() < hyp['mosaic']
  472. if mosaic:
  473. # Load mosaic
  474. img, labels = load_mosaic(self, index)
  475. shapes = None
  476. # MixUp augmentation
  477. if random.random() < hyp['mixup']:
  478. img, labels = mixup(img, labels, *load_mosaic(self, random.randint(0, self.n - 1)))
  479. else:
  480. # Load image
  481. img, (h0, w0), (h, w) = load_image(self, index)
  482. # Letterbox
  483. shape = self.batch_shapes[self.batch[index]] if self.rect else self.img_size # final letterboxed shape
  484. img, ratio, pad = letterbox(img, shape, auto=False, scaleup=self.augment)
  485. shapes = (h0, w0), ((h / h0, w / w0), pad) # for COCO mAP rescaling
  486. labels = self.labels[index].copy()
  487. if labels.size: # normalized xywh to pixel xyxy format
  488. labels[:, 1:] = xywhn2xyxy(labels[:, 1:], ratio[0] * w, ratio[1] * h, padw=pad[0], padh=pad[1])
  489. if self.augment:
  490. img, labels = random_perspective(img, labels,
  491. degrees=hyp['degrees'],
  492. translate=hyp['translate'],
  493. scale=hyp['scale'],
  494. shear=hyp['shear'],
  495. perspective=hyp['perspective'])
  496. nl = len(labels) # number of labels
  497. if nl:
  498. labels[:, 1:5] = xyxy2xywhn(labels[:, 1:5], w=img.shape[1], h=img.shape[0], clip=True, eps=1E-3)
  499. if self.augment:
  500. # Albumentations
  501. img, labels = self.albumentations(img, labels)
  502. nl = len(labels) # update after albumentations
  503. # HSV color-space
  504. augment_hsv(img, hgain=hyp['hsv_h'], sgain=hyp['hsv_s'], vgain=hyp['hsv_v'])
  505. # Flip up-down
  506. if random.random() < hyp['flipud']:
  507. img = np.flipud(img)
  508. if nl:
  509. labels[:, 2] = 1 - labels[:, 2]
  510. # Flip left-right
  511. if random.random() < hyp['fliplr']:
  512. img = np.fliplr(img)
  513. if nl:
  514. labels[:, 1] = 1 - labels[:, 1]
  515. # Cutouts
  516. # labels = cutout(img, labels, p=0.5)
  517. labels_out = torch.zeros((nl, 6))
  518. if nl:
  519. labels_out[:, 1:] = torch.from_numpy(labels)
  520. # Convert
  521. img = img.transpose((2, 0, 1))[::-1] # HWC to CHW, BGR to RGB
  522. img = np.ascontiguousarray(img)
  523. return torch.from_numpy(img), labels_out, self.img_files[index], shapes
  524. @staticmethod
  525. def collate_fn(batch):
  526. img, label, path, shapes = zip(*batch) # transposed
  527. for i, l in enumerate(label):
  528. l[:, 0] = i # add target image index for build_targets()
  529. return torch.stack(img, 0), torch.cat(label, 0), path, shapes
  530. @staticmethod
  531. def collate_fn4(batch):
  532. img, label, path, shapes = zip(*batch) # transposed
  533. n = len(shapes) // 4
  534. img4, label4, path4, shapes4 = [], [], path[:n], shapes[:n]
  535. ho = torch.tensor([[0.0, 0, 0, 1, 0, 0]])
  536. wo = torch.tensor([[0.0, 0, 1, 0, 0, 0]])
  537. s = torch.tensor([[1, 1, 0.5, 0.5, 0.5, 0.5]]) # scale
  538. for i in range(n): # zidane torch.zeros(16,3,720,1280) # BCHW
  539. i *= 4
  540. if random.random() < 0.5:
  541. im = F.interpolate(img[i].unsqueeze(0).float(), scale_factor=2.0, mode='bilinear', align_corners=False)[
  542. 0].type(img[i].type())
  543. l = label[i]
  544. else:
  545. im = torch.cat((torch.cat((img[i], img[i + 1]), 1), torch.cat((img[i + 2], img[i + 3]), 1)), 2)
  546. l = torch.cat((label[i], label[i + 1] + ho, label[i + 2] + wo, label[i + 3] + ho + wo), 0) * s
  547. img4.append(im)
  548. label4.append(l)
  549. for i, l in enumerate(label4):
  550. l[:, 0] = i # add target image index for build_targets()
  551. return torch.stack(img4, 0), torch.cat(label4, 0), path4, shapes4
  552. # Ancillary functions --------------------------------------------------------------------------------------------------
  553. def load_image(self, i):
  554. # loads 1 image from dataset index 'i', returns im, original hw, resized hw
  555. im = self.imgs[i]
  556. if im is None: # not cached in ram
  557. npy = self.img_npy[i]
  558. if npy and npy.exists(): # load npy
  559. im = np.load(npy)
  560. else: # read image
  561. path = self.img_files[i]
  562. im = cv2.imread(path) # BGR
  563. assert im is not None, f'Image Not Found {path}'
  564. h0, w0 = im.shape[:2] # orig hw
  565. r = self.img_size / max(h0, w0) # ratio
  566. if r != 1: # if sizes are not equal
  567. im = cv2.resize(im, (int(w0 * r), int(h0 * r)),
  568. interpolation=cv2.INTER_AREA if r < 1 and not self.augment else cv2.INTER_LINEAR)
  569. return im, (h0, w0), im.shape[:2] # im, hw_original, hw_resized
  570. else:
  571. return self.imgs[i], self.img_hw0[i], self.img_hw[i] # im, hw_original, hw_resized
  572. def load_mosaic(self, index):
  573. # YOLOv5 4-mosaic loader. Loads 1 image + 3 random images into a 4-image mosaic
  574. labels4, segments4 = [], []
  575. s = self.img_size
  576. yc, xc = (int(random.uniform(-x, 2 * s + x)) for x in self.mosaic_border) # mosaic center x, y
  577. indices = [index] + random.choices(self.indices, k=3) # 3 additional image indices
  578. random.shuffle(indices)
  579. for i, index in enumerate(indices):
  580. # Load image
  581. img, _, (h, w) = load_image(self, index)
  582. # place img in img4
  583. if i == 0: # top left
  584. img4 = np.full((s * 2, s * 2, img.shape[2]), 114, dtype=np.uint8) # base image with 4 tiles
  585. x1a, y1a, x2a, y2a = max(xc - w, 0), max(yc - h, 0), xc, yc # xmin, ymin, xmax, ymax (large image)
  586. x1b, y1b, x2b, y2b = w - (x2a - x1a), h - (y2a - y1a), w, h # xmin, ymin, xmax, ymax (small image)
  587. elif i == 1: # top right
  588. x1a, y1a, x2a, y2a = xc, max(yc - h, 0), min(xc + w, s * 2), yc
  589. x1b, y1b, x2b, y2b = 0, h - (y2a - y1a), min(w, x2a - x1a), h
  590. elif i == 2: # bottom left
  591. x1a, y1a, x2a, y2a = max(xc - w, 0), yc, xc, min(s * 2, yc + h)
  592. x1b, y1b, x2b, y2b = w - (x2a - x1a), 0, w, min(y2a - y1a, h)
  593. elif i == 3: # bottom right
  594. x1a, y1a, x2a, y2a = xc, yc, min(xc + w, s * 2), min(s * 2, yc + h)
  595. x1b, y1b, x2b, y2b = 0, 0, min(w, x2a - x1a), min(y2a - y1a, h)
  596. img4[y1a:y2a, x1a:x2a] = img[y1b:y2b, x1b:x2b] # img4[ymin:ymax, xmin:xmax]
  597. padw = x1a - x1b
  598. padh = y1a - y1b
  599. # Labels
  600. labels, segments = self.labels[index].copy(), self.segments[index].copy()
  601. if labels.size:
  602. labels[:, 1:] = xywhn2xyxy(labels[:, 1:], w, h, padw, padh) # normalized xywh to pixel xyxy format
  603. segments = [xyn2xy(x, w, h, padw, padh) for x in segments]
  604. labels4.append(labels)
  605. segments4.extend(segments)
  606. # Concat/clip labels
  607. labels4 = np.concatenate(labels4, 0)
  608. for x in (labels4[:, 1:], *segments4):
  609. np.clip(x, 0, 2 * s, out=x) # clip when using random_perspective()
  610. # img4, labels4 = replicate(img4, labels4) # replicate
  611. # Augment
  612. img4, labels4, segments4 = copy_paste(img4, labels4, segments4, p=self.hyp['copy_paste'])
  613. img4, labels4 = random_perspective(img4, labels4, segments4,
  614. degrees=self.hyp['degrees'],
  615. translate=self.hyp['translate'],
  616. scale=self.hyp['scale'],
  617. shear=self.hyp['shear'],
  618. perspective=self.hyp['perspective'],
  619. border=self.mosaic_border) # border to remove
  620. return img4, labels4
  621. def load_mosaic9(self, index):
  622. # YOLOv5 9-mosaic loader. Loads 1 image + 8 random images into a 9-image mosaic
  623. labels9, segments9 = [], []
  624. s = self.img_size
  625. indices = [index] + random.choices(self.indices, k=8) # 8 additional image indices
  626. random.shuffle(indices)
  627. for i, index in enumerate(indices):
  628. # Load image
  629. img, _, (h, w) = load_image(self, index)
  630. # place img in img9
  631. if i == 0: # center
  632. img9 = np.full((s * 3, s * 3, img.shape[2]), 114, dtype=np.uint8) # base image with 4 tiles
  633. h0, w0 = h, w
  634. c = s, s, s + w, s + h # xmin, ymin, xmax, ymax (base) coordinates
  635. elif i == 1: # top
  636. c = s, s - h, s + w, s
  637. elif i == 2: # top right
  638. c = s + wp, s - h, s + wp + w, s
  639. elif i == 3: # right
  640. c = s + w0, s, s + w0 + w, s + h
  641. elif i == 4: # bottom right
  642. c = s + w0, s + hp, s + w0 + w, s + hp + h
  643. elif i == 5: # bottom
  644. c = s + w0 - w, s + h0, s + w0, s + h0 + h
  645. elif i == 6: # bottom left
  646. c = s + w0 - wp - w, s + h0, s + w0 - wp, s + h0 + h
  647. elif i == 7: # left
  648. c = s - w, s + h0 - h, s, s + h0
  649. elif i == 8: # top left
  650. c = s - w, s + h0 - hp - h, s, s + h0 - hp
  651. padx, pady = c[:2]
  652. x1, y1, x2, y2 = (max(x, 0) for x in c) # allocate coords
  653. # Labels
  654. labels, segments = self.labels[index].copy(), self.segments[index].copy()
  655. if labels.size:
  656. labels[:, 1:] = xywhn2xyxy(labels[:, 1:], w, h, padx, pady) # normalized xywh to pixel xyxy format
  657. segments = [xyn2xy(x, w, h, padx, pady) for x in segments]
  658. labels9.append(labels)
  659. segments9.extend(segments)
  660. # Image
  661. img9[y1:y2, x1:x2] = img[y1 - pady:, x1 - padx:] # img9[ymin:ymax, xmin:xmax]
  662. hp, wp = h, w # height, width previous
  663. # Offset
  664. yc, xc = (int(random.uniform(0, s)) for _ in self.mosaic_border) # mosaic center x, y
  665. img9 = img9[yc:yc + 2 * s, xc:xc + 2 * s]
  666. # Concat/clip labels
  667. labels9 = np.concatenate(labels9, 0)
  668. labels9[:, [1, 3]] -= xc
  669. labels9[:, [2, 4]] -= yc
  670. c = np.array([xc, yc]) # centers
  671. segments9 = [x - c for x in segments9]
  672. for x in (labels9[:, 1:], *segments9):
  673. np.clip(x, 0, 2 * s, out=x) # clip when using random_perspective()
  674. # img9, labels9 = replicate(img9, labels9) # replicate
  675. # Augment
  676. img9, labels9 = random_perspective(img9, labels9, segments9,
  677. degrees=self.hyp['degrees'],
  678. translate=self.hyp['translate'],
  679. scale=self.hyp['scale'],
  680. shear=self.hyp['shear'],
  681. perspective=self.hyp['perspective'],
  682. border=self.mosaic_border) # border to remove
  683. return img9, labels9
  684. def create_folder(path='./new'):
  685. # Create folder
  686. if os.path.exists(path):
  687. shutil.rmtree(path) # delete output folder
  688. os.makedirs(path) # make new output folder
  689. def flatten_recursive(path='../datasets/coco128'):
  690. # Flatten a recursive directory by bringing all files to top level
  691. new_path = Path(path + '_flat')
  692. create_folder(new_path)
  693. for file in tqdm(glob.glob(str(Path(path)) + '/**/*.*', recursive=True)):
  694. shutil.copyfile(file, new_path / Path(file).name)
  695. def extract_boxes(path='../datasets/coco128'): # from utils.datasets import *; extract_boxes()
  696. # Convert detection dataset into classification dataset, with one directory per class
  697. path = Path(path) # images dir
  698. shutil.rmtree(path / 'classifier') if (path / 'classifier').is_dir() else None # remove existing
  699. files = list(path.rglob('*.*'))
  700. n = len(files) # number of files
  701. for im_file in tqdm(files, total=n):
  702. if im_file.suffix[1:] in IMG_FORMATS:
  703. # image
  704. im = cv2.imread(str(im_file))[..., ::-1] # BGR to RGB
  705. h, w = im.shape[:2]
  706. # labels
  707. lb_file = Path(img2label_paths([str(im_file)])[0])
  708. if Path(lb_file).exists():
  709. with open(lb_file) as f:
  710. lb = np.array([x.split() for x in f.read().strip().splitlines()], dtype=np.float32) # labels
  711. for j, x in enumerate(lb):
  712. c = int(x[0]) # class
  713. f = (path / 'classifier') / f'{c}' / f'{path.stem}_{im_file.stem}_{j}.jpg' # new filename
  714. if not f.parent.is_dir():
  715. f.parent.mkdir(parents=True)
  716. b = x[1:] * [w, h, w, h] # box
  717. # b[2:] = b[2:].max() # rectangle to square
  718. b[2:] = b[2:] * 1.2 + 3 # pad
  719. b = xywh2xyxy(b.reshape(-1, 4)).ravel().astype(np.int)
  720. b[[0, 2]] = np.clip(b[[0, 2]], 0, w) # clip boxes outside of image
  721. b[[1, 3]] = np.clip(b[[1, 3]], 0, h)
  722. assert cv2.imwrite(str(f), im[b[1]:b[3], b[0]:b[2]]), f'box failure in {f}'
  723. def autosplit(path='../datasets/coco128/images', weights=(0.9, 0.1, 0.0), annotated_only=False):
  724. """ Autosplit a dataset into train/val/test splits and save path/autosplit_*.txt files
  725. Usage: from utils.datasets import *; autosplit()
  726. Arguments
  727. path: Path to images directory
  728. weights: Train, val, test weights (list, tuple)
  729. annotated_only: Only use images with an annotated txt file
  730. """
  731. path = Path(path) # images dir
  732. files = sorted(x for x in path.rglob('*.*') if x.suffix[1:].lower() in IMG_FORMATS) # image files only
  733. n = len(files) # number of files
  734. random.seed(0) # for reproducibility
  735. indices = random.choices([0, 1, 2], weights=weights, k=n) # assign each image to a split
  736. txt = ['autosplit_train.txt', 'autosplit_val.txt', 'autosplit_test.txt'] # 3 txt files
  737. [(path.parent / x).unlink(missing_ok=True) for x in txt] # remove existing
  738. print(f'Autosplitting images from {path}' + ', using *.txt labeled images only' * annotated_only)
  739. for i, img in tqdm(zip(indices, files), total=n):
  740. if not annotated_only or Path(img2label_paths([str(img)])[0]).exists(): # check label
  741. with open(path.parent / txt[i], 'a') as f:
  742. f.write('./' + img.relative_to(path.parent).as_posix() + '\n') # add image to txt file
  743. def verify_image_label(args):
  744. # Verify one image-label pair
  745. im_file, lb_file, prefix = args
  746. nm, nf, ne, nc, msg, segments = 0, 0, 0, 0, '', [] # number (missing, found, empty, corrupt), message, segments
  747. try:
  748. # verify images
  749. im = Image.open(im_file)
  750. im.verify() # PIL verify
  751. shape = exif_size(im) # image size
  752. assert (shape[0] > 9) & (shape[1] > 9), f'image size {shape} <10 pixels'
  753. assert im.format.lower() in IMG_FORMATS, f'invalid image format {im.format}'
  754. if im.format.lower() in ('jpg', 'jpeg'):
  755. with open(im_file, 'rb') as f:
  756. f.seek(-2, 2)
  757. if f.read() != b'\xff\xd9': # corrupt JPEG
  758. ImageOps.exif_transpose(Image.open(im_file)).save(im_file, 'JPEG', subsampling=0, quality=100)
  759. msg = f'{prefix}WARNING: {im_file}: corrupt JPEG restored and saved'
  760. # verify labels
  761. if os.path.isfile(lb_file):
  762. nf = 1 # label found
  763. with open(lb_file) as f:
  764. l = [x.split() for x in f.read().strip().splitlines() if len(x)]
  765. if any([len(x) > 8 for x in l]): # is segment
  766. classes = np.array([x[0] for x in l], dtype=np.float32)
  767. segments = [np.array(x[1:], dtype=np.float32).reshape(-1, 2) for x in l] # (cls, xy1...)
  768. l = np.concatenate((classes.reshape(-1, 1), segments2boxes(segments)), 1) # (cls, xywh)
  769. l = np.array(l, dtype=np.float32)
  770. nl = len(l)
  771. if nl:
  772. assert l.shape[1] == 5, f'labels require 5 columns, {l.shape[1]} columns detected'
  773. assert (l >= 0).all(), f'negative label values {l[l < 0]}'
  774. assert (l[:, 1:] <= 1).all(), f'non-normalized or out of bounds coordinates {l[:, 1:][l[:, 1:] > 1]}'
  775. l = np.unique(l, axis=0) # remove duplicate rows
  776. if len(l) < nl:
  777. segments = np.unique(segments, axis=0)
  778. msg = f'{prefix}WARNING: {im_file}: {nl - len(l)} duplicate labels removed'
  779. else:
  780. ne = 1 # label empty
  781. l = np.zeros((0, 5), dtype=np.float32)
  782. else:
  783. nm = 1 # label missing
  784. l = np.zeros((0, 5), dtype=np.float32)
  785. return im_file, l, shape, segments, nm, nf, ne, nc, msg
  786. except Exception as e:
  787. nc = 1
  788. msg = f'{prefix}WARNING: {im_file}: ignoring corrupt image/label: {e}'
  789. return [None, None, None, None, nm, nf, ne, nc, msg]
  790. def dataset_stats(path='coco128.yaml', autodownload=False, verbose=False, profile=False, hub=False):
  791. """ Return dataset statistics dictionary with images and instances counts per split per class
  792. To run in parent directory: export PYTHONPATH="$PWD/yolov5"
  793. Usage1: from utils.datasets import *; dataset_stats('coco128.yaml', autodownload=True)
  794. Usage2: from utils.datasets import *; dataset_stats('../datasets/coco128_with_yaml.zip')
  795. Arguments
  796. path: Path to data.yaml or data.zip (with data.yaml inside data.zip)
  797. autodownload: Attempt to download dataset if not found locally
  798. verbose: Print stats dictionary
  799. """
  800. def round_labels(labels):
  801. # Update labels to integer class and 6 decimal place floats
  802. return [[int(c), *(round(x, 4) for x in points)] for c, *points in labels]
  803. def unzip(path):
  804. # Unzip data.zip TODO: CONSTRAINT: path/to/abc.zip MUST unzip to 'path/to/abc/'
  805. if str(path).endswith('.zip'): # path is data.zip
  806. assert Path(path).is_file(), f'Error unzipping {path}, file not found'
  807. ZipFile(path).extractall(path=path.parent) # unzip
  808. dir = path.with_suffix('') # dataset directory == zip name
  809. return True, str(dir), next(dir.rglob('*.yaml')) # zipped, data_dir, yaml_path
  810. else: # path is data.yaml
  811. return False, None, path
  812. def hub_ops(f, max_dim=1920):
  813. # HUB ops for 1 image 'f': resize and save at reduced quality in /dataset-hub for web/app viewing
  814. f_new = im_dir / Path(f).name # dataset-hub image filename
  815. try: # use PIL
  816. im = Image.open(f)
  817. r = max_dim / max(im.height, im.width) # ratio
  818. if r < 1.0: # image too large
  819. im = im.resize((int(im.width * r), int(im.height * r)))
  820. im.save(f_new, quality=75) # save
  821. except Exception as e: # use OpenCV
  822. print(f'WARNING: HUB ops PIL failure {f}: {e}')
  823. im = cv2.imread(f)
  824. im_height, im_width = im.shape[:2]
  825. r = max_dim / max(im_height, im_width) # ratio
  826. if r < 1.0: # image too large
  827. im = cv2.resize(im, (int(im_width * r), int(im_height * r)), interpolation=cv2.INTER_LINEAR)
  828. cv2.imwrite(str(f_new), im)
  829. zipped, data_dir, yaml_path = unzip(Path(path))
  830. with open(check_yaml(yaml_path), errors='ignore') as f:
  831. data = yaml.safe_load(f) # data dict
  832. if zipped:
  833. data['path'] = data_dir # TODO: should this be dir.resolve()?
  834. check_dataset(data, autodownload) # download dataset if missing
  835. hub_dir = Path(data['path'] + ('-hub' if hub else ''))
  836. stats = {'nc': data['nc'], 'names': data['names']} # statistics dictionary
  837. for split in 'train', 'val', 'test':
  838. if data.get(split) is None:
  839. stats[split] = None # i.e. no test set
  840. continue
  841. x = []
  842. dataset = LoadImagesAndLabels(data[split]) # load dataset
  843. for label in tqdm(dataset.labels, total=dataset.n, desc='Statistics'):
  844. x.append(np.bincount(label[:, 0].astype(int), minlength=data['nc']))
  845. x = np.array(x) # shape(128x80)
  846. stats[split] = {'instance_stats': {'total': int(x.sum()), 'per_class': x.sum(0).tolist()},
  847. 'image_stats': {'total': dataset.n, 'unlabelled': int(np.all(x == 0, 1).sum()),
  848. 'per_class': (x > 0).sum(0).tolist()},
  849. 'labels': [{str(Path(k).name): round_labels(v.tolist())} for k, v in
  850. zip(dataset.img_files, dataset.labels)]}
  851. if hub:
  852. im_dir = hub_dir / 'images'
  853. im_dir.mkdir(parents=True, exist_ok=True)
  854. for _ in tqdm(ThreadPool(NUM_THREADS).imap(hub_ops, dataset.img_files), total=dataset.n, desc='HUB Ops'):
  855. pass
  856. # Profile
  857. stats_path = hub_dir / 'stats.json'
  858. if profile:
  859. for _ in range(1):
  860. file = stats_path.with_suffix('.npy')
  861. t1 = time.time()
  862. np.save(file, stats)
  863. t2 = time.time()
  864. x = np.load(file, allow_pickle=True)
  865. print(f'stats.npy times: {time.time() - t2:.3f}s read, {t2 - t1:.3f}s write')
  866. file = stats_path.with_suffix('.json')
  867. t1 = time.time()
  868. with open(file, 'w') as f:
  869. json.dump(stats, f) # save stats *.json
  870. t2 = time.time()
  871. with open(file) as f:
  872. x = json.load(f) # load hyps dict
  873. print(f'stats.json times: {time.time() - t2:.3f}s read, {t2 - t1:.3f}s write')
  874. # Save, print and return
  875. if hub:
  876. print(f'Saving {stats_path.resolve()}...')
  877. with open(stats_path, 'w') as f:
  878. json.dump(stats, f) # save stats.json
  879. if verbose:
  880. print(json.dumps(stats, indent=2, sort_keys=False))
  881. return stats