vis_tools.py 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. import cv2
  2. import os
  3. import numpy as np
  4. import matplotlib.pyplot as plt
  5. # -------------------------- For Detection Task --------------------------
  6. ## Draw bbox & label on the image
  7. def plot_bbox_labels(img, bbox, label=None, cls_color=None, text_scale=0.4):
  8. x1, y1, x2, y2 = bbox
  9. x1, y1, x2, y2 = int(x1), int(y1), int(x2), int(y2)
  10. t_size = cv2.getTextSize(label, 0, fontScale=1, thickness=2)[0]
  11. # plot bbox
  12. cv2.rectangle(img, (x1, y1), (x2, y2), cls_color, 2)
  13. if label is not None:
  14. # plot title bbox
  15. cv2.rectangle(img, (x1, y1-t_size[1]), (int(x1 + t_size[0] * text_scale), y1), cls_color, -1)
  16. # put the test on the title bbox
  17. cv2.putText(img, label, (int(x1), int(y1 - 5)), 0, text_scale, (0, 0, 0), 1, lineType=cv2.LINE_AA)
  18. return img
  19. ## Visualize the detection results
  20. def visualize(image, bboxes, scores, labels, class_colors, class_names):
  21. ts = 0.4
  22. for i, bbox in enumerate(bboxes):
  23. cls_id = int(labels[i])
  24. cls_color = class_colors[cls_id]
  25. mess = '%s: %.2f' % (class_names[cls_id], scores[i])
  26. image = plot_bbox_labels(image, bbox, mess, cls_color, text_scale=ts)
  27. return image
  28. ## Visualize the input data during the training stage
  29. def vis_data(images, targets, num_classes=80, normalized_bbox=False, color_format='bgr', pixel_mean=None, pixel_std=None, box_format="xyxy"):
  30. """
  31. images: (tensor) [B, 3, H, W]
  32. targets: (list) a list of targets
  33. """
  34. batch_size = images.size(0)
  35. np.random.seed(0)
  36. class_colors = [(np.random.randint(255),
  37. np.random.randint(255),
  38. np.random.randint(255)) for _ in range(num_classes)]
  39. for bi in range(batch_size):
  40. tgt_boxes = targets[bi]['boxes']
  41. tgt_labels = targets[bi]['labels']
  42. # to numpy
  43. image = images[bi].permute(1, 2, 0).cpu().numpy()
  44. # denormalize image
  45. if pixel_mean is not None and pixel_std is not None:
  46. image = image * pixel_std + pixel_mean
  47. if color_format == 'rgb':
  48. image = image[..., (2, 1, 0)] # RGB to BGR
  49. image = image.astype(np.uint8)
  50. image = image.copy()
  51. img_h, img_w = image.shape[:2]
  52. # visualize target
  53. for box, label in zip(tgt_boxes, tgt_labels):
  54. if box_format == "xyxy":
  55. x1, y1, x2, y2 = box
  56. elif box_format == "xywh":
  57. cx, cy, bw, bh = box
  58. x1 = cx - 0.5 * bw
  59. y1 = cy - 0.5 * bh
  60. x2 = cx + 0.5 * bw
  61. y2 = cy + 0.5 * bh
  62. if normalized_bbox:
  63. x1 *= img_w
  64. y1 *= img_h
  65. x2 *= img_w
  66. y2 *= img_h
  67. x1, y1 = int(x1), int(y1)
  68. x2, y2 = int(x2), int(y2)
  69. cls_id = int(label)
  70. # draw box
  71. color = class_colors[cls_id]
  72. cv2.rectangle(image, (x1, y1), (x2, y2), color, 2)
  73. cv2.imshow('train target', image)
  74. cv2.waitKey(0)
  75. ## convert feature to he heatmap
  76. def convert_feature_heatmap(feature):
  77. """
  78. feature: (ndarray) [H, W, C]
  79. """
  80. heatmap = None
  81. return heatmap
  82. ## draw feature on the image
  83. def draw_feature(img, features, save=None):
  84. """
  85. img: (ndarray & cv2.Mat) [H, W, C], where the C is 3 for RGB or 1 for Gray.
  86. features: (List[ndarray]). It is a list of the multiple feature map whose shape is [H, W, C].
  87. save: (bool) save the result or not.
  88. """
  89. img_h, img_w = img.shape[:2]
  90. for i, fmp in enumerate(features):
  91. hmp = convert_feature_heatmap(fmp)
  92. hmp = cv2.resize(hmp, (img_w, img_h))
  93. hmp = hmp.astype(np.uint8)*255
  94. hmp_rgb = cv2.applyColorMap(hmp, cv2.COLORMAP_JET)
  95. superimposed_img = hmp_rgb * 0.4 + img
  96. # show the heatmap
  97. plt.imshow(hmp)
  98. plt.close()
  99. # show the image with heatmap
  100. cv2.imshow("image with heatmap", superimposed_img)
  101. cv2.waitKey(0)
  102. cv2.destroyAllWindows()
  103. if save:
  104. save_dir = 'feature_heatmap'
  105. os.makedirs(save_dir, exist_ok=True)
  106. cv2.imwrite(os.path.join(save_dir, 'feature_{}.png'.format(i) ), superimposed_img)
  107. # -------------------------- For Tracking Task --------------------------
  108. def get_color(idx):
  109. idx = idx * 3
  110. color = ((37 * idx) % 255, (17 * idx) % 255, (29 * idx) % 255)
  111. return color
  112. def plot_tracking(image, tlwhs, obj_ids, scores=None, frame_id=0, fps=0., ids2=None):
  113. im = np.ascontiguousarray(np.copy(image))
  114. im_h, im_w = im.shape[:2]
  115. top_view = np.zeros([im_w, im_w, 3], dtype=np.uint8) + 255
  116. #text_scale = max(1, image.shape[1] / 1600.)
  117. #text_thickness = 2
  118. #line_thickness = max(1, int(image.shape[1] / 500.))
  119. text_scale = 2
  120. text_thickness = 2
  121. line_thickness = 3
  122. radius = max(5, int(im_w/140.))
  123. cv2.putText(im, 'frame: %d fps: %.2f num: %d' % (frame_id, fps, len(tlwhs)),
  124. (0, int(15 * text_scale)), cv2.FONT_HERSHEY_PLAIN, 2, (0, 0, 255), thickness=2)
  125. for i, tlwh in enumerate(tlwhs):
  126. x1, y1, w, h = tlwh
  127. intbox = tuple(map(int, (x1, y1, x1 + w, y1 + h)))
  128. obj_id = int(obj_ids[i])
  129. id_text = '{}'.format(int(obj_id))
  130. if ids2 is not None:
  131. id_text = id_text + ', {}'.format(int(ids2[i]))
  132. color = get_color(abs(obj_id))
  133. cv2.rectangle(im, intbox[0:2], intbox[2:4], color=color, thickness=line_thickness)
  134. cv2.putText(im, id_text, (intbox[0], intbox[1]), cv2.FONT_HERSHEY_PLAIN, text_scale, (0, 0, 255),
  135. thickness=text_thickness)
  136. return im