You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

165 lines
7.0KB

  1. import argparse
  2. from utils.datasets import *
  3. from utils.utils import *
  4. ONNX_EXPORT = False
  5. def detect(save_img=False):
  6. out, source, weights, half, view_img, save_txt, imgsz = \
  7. opt.output, opt.source, opt.weights, opt.half, opt.view_img, opt.save_txt, opt.img_size
  8. webcam = source == '0' or source.startswith('rtsp') or source.startswith('http') or source.endswith('.txt')
  9. # Initialize
  10. device = torch_utils.select_device(opt.device)
  11. if os.path.exists(out):
  12. shutil.rmtree(out) # delete output folder
  13. os.makedirs(out) # make new output folder
  14. # Load model
  15. google_utils.attempt_download(weights)
  16. model = torch.load(weights, map_location=device)['model']
  17. # torch.save(torch.load(weights, map_location=device), weights) # update model if SourceChangeWarning
  18. # model.fuse()
  19. model.to(device).eval()
  20. # Second-stage classifier
  21. classify = False
  22. if classify:
  23. modelc = torch_utils.load_classifier(name='resnet101', n=2) # initialize
  24. modelc.load_state_dict(torch.load('weights/resnet101.pt', map_location=device)['model']) # load weights
  25. modelc.to(device).eval()
  26. # Half precision
  27. half = half and device.type != 'cpu' # half precision only supported on CUDA
  28. if half:
  29. model.half()
  30. # Set Dataloader
  31. vid_path, vid_writer = None, None
  32. if webcam:
  33. view_img = True
  34. torch.backends.cudnn.benchmark = True # set True to speed up constant image size inference
  35. dataset = LoadStreams(source, img_size=imgsz)
  36. else:
  37. save_img = True
  38. dataset = LoadImages(source, img_size=imgsz)
  39. # Get names and colors
  40. names = model.names if hasattr(model, 'names') else model.modules.names
  41. colors = [[random.randint(0, 255) for _ in range(3)] for _ in range(len(names))]
  42. # Run inference
  43. t0 = time.time()
  44. img = torch.zeros((1, 3, imgsz, imgsz), device=device) # init img
  45. _ = model(img.half() if half else img.float()) if device.type != 'cpu' else None # run once
  46. for path, img, im0s, vid_cap in dataset:
  47. img = torch.from_numpy(img).to(device)
  48. img = img.half() if half else img.float() # uint8 to fp16/32
  49. img /= 255.0 # 0 - 255 to 0.0 - 1.0
  50. if img.ndimension() == 3:
  51. img = img.unsqueeze(0)
  52. # Inference
  53. t1 = torch_utils.time_synchronized()
  54. pred = model(img, augment=opt.augment)[0]
  55. t2 = torch_utils.time_synchronized()
  56. # to float
  57. if half:
  58. pred = pred.float()
  59. # Apply NMS
  60. pred = non_max_suppression(pred, opt.conf_thres, opt.iou_thres,
  61. fast=True, classes=opt.classes, agnostic=opt.agnostic_nms)
  62. # Apply Classifier
  63. if classify:
  64. pred = apply_classifier(pred, modelc, img, im0s)
  65. # Process detections
  66. for i, det in enumerate(pred): # detections per image
  67. if webcam: # batch_size >= 1
  68. p, s, im0 = path[i], '%g: ' % i, im0s[i].copy()
  69. else:
  70. p, s, im0 = path, '', im0s
  71. save_path = str(Path(out) / Path(p).name)
  72. s += '%gx%g ' % img.shape[2:] # print string
  73. gn = torch.tensor(im0.shape)[[1, 0, 1, 0]] #  normalization gain whwh
  74. if det is not None and len(det):
  75. # Rescale boxes from img_size to im0 size
  76. det[:, :4] = scale_coords(img.shape[2:], det[:, :4], im0.shape).round()
  77. # Print results
  78. for c in det[:, -1].unique():
  79. n = (det[:, -1] == c).sum() # detections per class
  80. s += '%g %ss, ' % (n, names[int(c)]) # add to string
  81. # Write results
  82. for *xyxy, conf, cls in det:
  83. if save_txt: # Write to file
  84. xywh = (xyxy2xywh(torch.tensor(xyxy).view(1, 4)) / gn).view(-1).tolist() # normalized xywh
  85. with open(save_path[:save_path.rfind('.')] + '.txt', 'a') as file:
  86. file.write(('%g ' * 5 + '\n') % (cls, *xywh)) # label format
  87. if save_img or view_img: # Add bbox to image
  88. label = '%s %.2f' % (names[int(cls)], conf)
  89. plot_one_box(xyxy, im0, label=label, color=colors[int(cls)], line_thickness=3)
  90. # Print time (inference + NMS)
  91. print('%sDone. (%.3fs)' % (s, t2 - t1))
  92. # Stream results
  93. if view_img:
  94. cv2.imshow(p, im0)
  95. if cv2.waitKey(1) == ord('q'): # q to quit
  96. raise StopIteration
  97. # Save results (image with detections)
  98. if save_img:
  99. if dataset.mode == 'images':
  100. cv2.imwrite(save_path, im0)
  101. else:
  102. if vid_path != save_path: # new video
  103. vid_path = save_path
  104. if isinstance(vid_writer, cv2.VideoWriter):
  105. vid_writer.release() # release previous video writer
  106. fps = vid_cap.get(cv2.CAP_PROP_FPS)
  107. w = int(vid_cap.get(cv2.CAP_PROP_FRAME_WIDTH))
  108. h = int(vid_cap.get(cv2.CAP_PROP_FRAME_HEIGHT))
  109. vid_writer = cv2.VideoWriter(save_path, cv2.VideoWriter_fourcc(*opt.fourcc), fps, (w, h))
  110. vid_writer.write(im0)
  111. if save_txt or save_img:
  112. print('Results saved to %s' % os.getcwd() + os.sep + out)
  113. if platform == 'darwin': # MacOS
  114. os.system('open ' + save_path)
  115. print('Done. (%.3fs)' % (time.time() - t0))
  116. if __name__ == '__main__':
  117. parser = argparse.ArgumentParser()
  118. parser.add_argument('--weights', type=str, default='weights/yolov5s.pt', help='model.pt path')
  119. parser.add_argument('--source', type=str, default='inference/images', help='source') # file/folder, 0 for webcam
  120. parser.add_argument('--output', type=str, default='inference/output', help='output folder') # output folder
  121. parser.add_argument('--img-size', type=int, default=640, help='inference size (pixels)')
  122. parser.add_argument('--conf-thres', type=float, default=0.4, help='object confidence threshold')
  123. parser.add_argument('--iou-thres', type=float, default=0.5, help='IOU threshold for NMS')
  124. parser.add_argument('--fourcc', type=str, default='mp4v', help='output video codec (verify ffmpeg support)')
  125. parser.add_argument('--half', action='store_true', help='half precision FP16 inference')
  126. parser.add_argument('--device', default='', help='cuda device, i.e. 0 or 0,1,2,3 or cpu')
  127. parser.add_argument('--view-img', action='store_true', help='display results')
  128. parser.add_argument('--save-txt', action='store_true', help='save results to *.txt')
  129. parser.add_argument('--classes', nargs='+', type=int, help='filter by class')
  130. parser.add_argument('--agnostic-nms', action='store_true', help='class-agnostic NMS')
  131. parser.add_argument('--augment', action='store_true', help='augmented inference')
  132. opt = parser.parse_args()
  133. print(opt)
  134. with torch.no_grad():
  135. detect()