選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

275 行
11KB

  1. # YOLOv5 🚀 by Ultralytics, GPL-3.0 license
  2. """
  3. Image augmentation functions
  4. """
  5. import logging
  6. import math
  7. import random
  8. import cv2
  9. import numpy as np
  10. from utils.general import colorstr, segment2box, resample_segments, check_version
  11. from utils.metrics import bbox_ioa
  12. class Albumentations:
  13. # YOLOv5 Albumentations class (optional, only used if package is installed)
  14. def __init__(self):
  15. self.transform = None
  16. try:
  17. import albumentations as A
  18. check_version(A.__version__, '1.0.3') # version requirement
  19. self.transform = A.Compose([
  20. A.Blur(p=0.1),
  21. A.MedianBlur(p=0.1),
  22. A.ToGray(p=0.01)],
  23. bbox_params=A.BboxParams(format='yolo', label_fields=['class_labels']))
  24. logging.info(colorstr('albumentations: ') + ', '.join(f'{x}' for x in self.transform.transforms if x.p))
  25. except ImportError: # package not installed, skip
  26. pass
  27. except Exception as e:
  28. logging.info(colorstr('albumentations: ') + f'{e}')
  29. def __call__(self, im, labels, p=1.0):
  30. if self.transform and random.random() < p:
  31. new = self.transform(image=im, bboxes=labels[:, 1:], class_labels=labels[:, 0]) # transformed
  32. im, labels = new['image'], np.array([[c, *b] for c, b in zip(new['class_labels'], new['bboxes'])])
  33. return im, labels
  34. def augment_hsv(im, hgain=0.5, sgain=0.5, vgain=0.5):
  35. # HSV color-space augmentation
  36. if hgain or sgain or vgain:
  37. r = np.random.uniform(-1, 1, 3) * [hgain, sgain, vgain] + 1 # random gains
  38. hue, sat, val = cv2.split(cv2.cvtColor(im, cv2.COLOR_BGR2HSV))
  39. dtype = im.dtype # uint8
  40. x = np.arange(0, 256, dtype=r.dtype)
  41. lut_hue = ((x * r[0]) % 180).astype(dtype)
  42. lut_sat = np.clip(x * r[1], 0, 255).astype(dtype)
  43. lut_val = np.clip(x * r[2], 0, 255).astype(dtype)
  44. im_hsv = cv2.merge((cv2.LUT(hue, lut_hue), cv2.LUT(sat, lut_sat), cv2.LUT(val, lut_val)))
  45. cv2.cvtColor(im_hsv, cv2.COLOR_HSV2BGR, dst=im) # no return needed
  46. def hist_equalize(im, clahe=True, bgr=False):
  47. # Equalize histogram on BGR image 'im' with im.shape(n,m,3) and range 0-255
  48. yuv = cv2.cvtColor(im, cv2.COLOR_BGR2YUV if bgr else cv2.COLOR_RGB2YUV)
  49. if clahe:
  50. c = cv2.createCLAHE(clipLimit=2.0, tileGridSize=(8, 8))
  51. yuv[:, :, 0] = c.apply(yuv[:, :, 0])
  52. else:
  53. yuv[:, :, 0] = cv2.equalizeHist(yuv[:, :, 0]) # equalize Y channel histogram
  54. return cv2.cvtColor(yuv, cv2.COLOR_YUV2BGR if bgr else cv2.COLOR_YUV2RGB) # convert YUV image to RGB
  55. def replicate(im, labels):
  56. # Replicate labels
  57. h, w = im.shape[:2]
  58. boxes = labels[:, 1:].astype(int)
  59. x1, y1, x2, y2 = boxes.T
  60. s = ((x2 - x1) + (y2 - y1)) / 2 # side length (pixels)
  61. for i in s.argsort()[:round(s.size * 0.5)]: # smallest indices
  62. x1b, y1b, x2b, y2b = boxes[i]
  63. bh, bw = y2b - y1b, x2b - x1b
  64. yc, xc = int(random.uniform(0, h - bh)), int(random.uniform(0, w - bw)) # offset x, y
  65. x1a, y1a, x2a, y2a = [xc, yc, xc + bw, yc + bh]
  66. im[y1a:y2a, x1a:x2a] = im[y1b:y2b, x1b:x2b] # im4[ymin:ymax, xmin:xmax]
  67. labels = np.append(labels, [[labels[i, 0], x1a, y1a, x2a, y2a]], axis=0)
  68. return im, labels
  69. def letterbox(im, new_shape=(640, 640), color=(114, 114, 114), auto=True, scaleFill=False, scaleup=True, stride=32):
  70. # Resize and pad image while meeting stride-multiple constraints
  71. shape = im.shape[:2] # current shape [height, width]
  72. if isinstance(new_shape, int):
  73. new_shape = (new_shape, new_shape)
  74. # Scale ratio (new / old)
  75. r = min(new_shape[0] / shape[0], new_shape[1] / shape[1])
  76. if not scaleup: # only scale down, do not scale up (for better val mAP)
  77. r = min(r, 1.0)
  78. # Compute padding
  79. ratio = r, r # width, height ratios
  80. new_unpad = int(round(shape[1] * r)), int(round(shape[0] * r))
  81. dw, dh = new_shape[1] - new_unpad[0], new_shape[0] - new_unpad[1] # wh padding
  82. if auto: # minimum rectangle
  83. dw, dh = np.mod(dw, stride), np.mod(dh, stride) # wh padding
  84. elif scaleFill: # stretch
  85. dw, dh = 0.0, 0.0
  86. new_unpad = (new_shape[1], new_shape[0])
  87. ratio = new_shape[1] / shape[1], new_shape[0] / shape[0] # width, height ratios
  88. dw /= 2 # divide padding into 2 sides
  89. dh /= 2
  90. if shape[::-1] != new_unpad: # resize
  91. im = cv2.resize(im, new_unpad, interpolation=cv2.INTER_LINEAR)
  92. top, bottom = int(round(dh - 0.1)), int(round(dh + 0.1))
  93. left, right = int(round(dw - 0.1)), int(round(dw + 0.1))
  94. im = cv2.copyMakeBorder(im, top, bottom, left, right, cv2.BORDER_CONSTANT, value=color) # add border
  95. return im, ratio, (dw, dh)
  96. def random_perspective(im, targets=(), segments=(), degrees=10, translate=.1, scale=.1, shear=10, perspective=0.0,
  97. border=(0, 0)):
  98. # torchvision.transforms.RandomAffine(degrees=(-10, 10), translate=(.1, .1), scale=(.9, 1.1), shear=(-10, 10))
  99. # targets = [cls, xyxy]
  100. height = im.shape[0] + border[0] * 2 # shape(h,w,c)
  101. width = im.shape[1] + border[1] * 2
  102. # Center
  103. C = np.eye(3)
  104. C[0, 2] = -im.shape[1] / 2 # x translation (pixels)
  105. C[1, 2] = -im.shape[0] / 2 # y translation (pixels)
  106. # Perspective
  107. P = np.eye(3)
  108. P[2, 0] = random.uniform(-perspective, perspective) # x perspective (about y)
  109. P[2, 1] = random.uniform(-perspective, perspective) # y perspective (about x)
  110. # Rotation and Scale
  111. R = np.eye(3)
  112. a = random.uniform(-degrees, degrees)
  113. # a += random.choice([-180, -90, 0, 90]) # add 90deg rotations to small rotations
  114. s = random.uniform(1 - scale, 1 + scale)
  115. # s = 2 ** random.uniform(-scale, scale)
  116. R[:2] = cv2.getRotationMatrix2D(angle=a, center=(0, 0), scale=s)
  117. # Shear
  118. S = np.eye(3)
  119. S[0, 1] = math.tan(random.uniform(-shear, shear) * math.pi / 180) # x shear (deg)
  120. S[1, 0] = math.tan(random.uniform(-shear, shear) * math.pi / 180) # y shear (deg)
  121. # Translation
  122. T = np.eye(3)
  123. T[0, 2] = random.uniform(0.5 - translate, 0.5 + translate) * width # x translation (pixels)
  124. T[1, 2] = random.uniform(0.5 - translate, 0.5 + translate) * height # y translation (pixels)
  125. # Combined rotation matrix
  126. M = T @ S @ R @ P @ C # order of operations (right to left) is IMPORTANT
  127. if (border[0] != 0) or (border[1] != 0) or (M != np.eye(3)).any(): # image changed
  128. if perspective:
  129. im = cv2.warpPerspective(im, M, dsize=(width, height), borderValue=(114, 114, 114))
  130. else: # affine
  131. im = cv2.warpAffine(im, M[:2], dsize=(width, height), borderValue=(114, 114, 114))
  132. # Visualize
  133. # import matplotlib.pyplot as plt
  134. # ax = plt.subplots(1, 2, figsize=(12, 6))[1].ravel()
  135. # ax[0].imshow(im[:, :, ::-1]) # base
  136. # ax[1].imshow(im2[:, :, ::-1]) # warped
  137. # Transform label coordinates
  138. n = len(targets)
  139. if n:
  140. use_segments = any(x.any() for x in segments)
  141. new = np.zeros((n, 4))
  142. if use_segments: # warp segments
  143. segments = resample_segments(segments) # upsample
  144. for i, segment in enumerate(segments):
  145. xy = np.ones((len(segment), 3))
  146. xy[:, :2] = segment
  147. xy = xy @ M.T # transform
  148. xy = xy[:, :2] / xy[:, 2:3] if perspective else xy[:, :2] # perspective rescale or affine
  149. # clip
  150. new[i] = segment2box(xy, width, height)
  151. else: # warp boxes
  152. xy = np.ones((n * 4, 3))
  153. xy[:, :2] = targets[:, [1, 2, 3, 4, 1, 4, 3, 2]].reshape(n * 4, 2) # x1y1, x2y2, x1y2, x2y1
  154. xy = xy @ M.T # transform
  155. xy = (xy[:, :2] / xy[:, 2:3] if perspective else xy[:, :2]).reshape(n, 8) # perspective rescale or affine
  156. # create new boxes
  157. x = xy[:, [0, 2, 4, 6]]
  158. y = xy[:, [1, 3, 5, 7]]
  159. new = np.concatenate((x.min(1), y.min(1), x.max(1), y.max(1))).reshape(4, n).T
  160. # clip
  161. new[:, [0, 2]] = new[:, [0, 2]].clip(0, width)
  162. new[:, [1, 3]] = new[:, [1, 3]].clip(0, height)
  163. # filter candidates
  164. i = box_candidates(box1=targets[:, 1:5].T * s, box2=new.T, area_thr=0.01 if use_segments else 0.10)
  165. targets = targets[i]
  166. targets[:, 1:5] = new[i]
  167. return im, targets
  168. def copy_paste(im, labels, segments, p=0.5):
  169. # Implement Copy-Paste augmentation https://arxiv.org/abs/2012.07177, labels as nx5 np.array(cls, xyxy)
  170. n = len(segments)
  171. if p and n:
  172. h, w, c = im.shape # height, width, channels
  173. im_new = np.zeros(im.shape, np.uint8)
  174. for j in random.sample(range(n), k=round(p * n)):
  175. l, s = labels[j], segments[j]
  176. box = w - l[3], l[2], w - l[1], l[4]
  177. ioa = bbox_ioa(box, labels[:, 1:5]) # intersection over area
  178. if (ioa < 0.30).all(): # allow 30% obscuration of existing labels
  179. labels = np.concatenate((labels, [[l[0], *box]]), 0)
  180. segments.append(np.concatenate((w - s[:, 0:1], s[:, 1:2]), 1))
  181. cv2.drawContours(im_new, [segments[j].astype(np.int32)], -1, (255, 255, 255), cv2.FILLED)
  182. result = cv2.bitwise_and(src1=im, src2=im_new)
  183. result = cv2.flip(result, 1) # augment segments (flip left-right)
  184. i = result > 0 # pixels to replace
  185. # i[:, :] = result.max(2).reshape(h, w, 1) # act over ch
  186. im[i] = result[i] # cv2.imwrite('debug.jpg', im) # debug
  187. return im, labels, segments
  188. def cutout(im, labels, p=0.5):
  189. # Applies image cutout augmentation https://arxiv.org/abs/1708.04552
  190. if random.random() < p:
  191. h, w = im.shape[:2]
  192. scales = [0.5] * 1 + [0.25] * 2 + [0.125] * 4 + [0.0625] * 8 + [0.03125] * 16 # image size fraction
  193. for s in scales:
  194. mask_h = random.randint(1, int(h * s)) # create random masks
  195. mask_w = random.randint(1, int(w * s))
  196. # box
  197. xmin = max(0, random.randint(0, w) - mask_w // 2)
  198. ymin = max(0, random.randint(0, h) - mask_h // 2)
  199. xmax = min(w, xmin + mask_w)
  200. ymax = min(h, ymin + mask_h)
  201. # apply random color mask
  202. im[ymin:ymax, xmin:xmax] = [random.randint(64, 191) for _ in range(3)]
  203. # return unobscured labels
  204. if len(labels) and s > 0.03:
  205. box = np.array([xmin, ymin, xmax, ymax], dtype=np.float32)
  206. ioa = bbox_ioa(box, labels[:, 1:5]) # intersection over area
  207. labels = labels[ioa < 0.60] # remove >60% obscured labels
  208. return labels
  209. def mixup(im, labels, im2, labels2):
  210. # Applies MixUp augmentation https://arxiv.org/pdf/1710.09412.pdf
  211. r = np.random.beta(32.0, 32.0) # mixup ratio, alpha=beta=32.0
  212. im = (im * r + im2 * (1 - r)).astype(np.uint8)
  213. labels = np.concatenate((labels, labels2), 0)
  214. return im, labels
  215. def box_candidates(box1, box2, wh_thr=2, ar_thr=20, area_thr=0.1, eps=1e-16): # box1(4,n), box2(4,n)
  216. # Compute candidate boxes: box1 before augment, box2 after augment, wh_thr (pixels), aspect_ratio_thr, area_ratio
  217. w1, h1 = box1[2] - box1[0], box1[3] - box1[1]
  218. w2, h2 = box2[2] - box2[0], box2[3] - box2[1]
  219. ar = np.maximum(w2 / (h2 + eps), h2 / (w2 + eps)) # aspect ratio
  220. return (w2 > wh_thr) & (h2 > wh_thr) & (w2 * h2 / (w1 * h1 + eps) > area_thr) & (ar < ar_thr) # candidates