car-detection-bayes/detect.py

138 lines
5.3 KiB
Python
Raw Normal View History

2018-08-26 08:51:39 +00:00
import argparse
import time
from models import *
from utils.datasets import *
from utils.utils import *
from utils import torch_utils
2019-01-08 18:37:23 +00:00
def detect(
2019-02-08 21:43:05 +00:00
cfg,
weights,
images_path,
output='output',
img_size=416,
conf_thres=0.3,
nms_thres=0.45,
save_txt=False,
2019-02-08 21:43:05 +00:00
save_images=True,
):
device = torch_utils.select_device()
2019-01-02 15:32:38 +00:00
os.system('rm -rf ' + output)
os.makedirs(output, exist_ok=True)
2018-08-26 08:51:39 +00:00
# Load model
2019-02-08 21:43:05 +00:00
model = Darknet(cfg, img_size)
2018-08-26 08:51:39 +00:00
2019-02-08 21:43:05 +00:00
if weights.endswith('.pt'): # pytorch format
if weights.endswith('weights/yolov3.pt') and not os.path.isfile(weights):
os.system('wget https://storage.googleapis.com/ultralytics/yolov3.pt -O ' + weights)
checkpoint = torch.load(weights, map_location='cpu')
2018-08-26 08:51:39 +00:00
model.load_state_dict(checkpoint['model'])
del checkpoint
2018-12-06 12:01:49 +00:00
else: # darknet format
2019-02-08 21:43:05 +00:00
load_darknet_weights(model, weights)
2018-08-26 08:51:39 +00:00
model.to(device).eval()
# Set Dataloader
2019-02-08 21:43:05 +00:00
dataloader = load_images(images_path, img_size=img_size)
# Classes and colors
classes = load_classes(parse_data_cfg('cfg/coco.data')['names']) # Extracts class labels from file
2019-02-08 22:08:26 +00:00
colors = [[random.randint(0, 255), random.randint(0, 255), random.randint(0, 255)] for _ in range(len(classes))]
2018-08-26 08:51:39 +00:00
2019-02-08 21:43:05 +00:00
for i, (path, img, img0) in enumerate(dataloader):
2019-02-08 21:55:01 +00:00
print("%g/%g '%s': " % (i + 1, len(dataloader), path), end='')
2019-02-08 21:43:05 +00:00
t = time.time()
2018-08-26 08:51:39 +00:00
# Get detections
with torch.no_grad():
2018-12-23 11:51:02 +00:00
img = torch.from_numpy(img).unsqueeze(0).to(device)
2019-01-03 22:41:31 +00:00
if ONNX_EXPORT:
2019-02-08 14:13:44 +00:00
pred = torch.onnx._export(model, img, 'weights/model.onnx', verbose=True)
2019-01-08 18:37:23 +00:00
return # ONNX export
2018-12-23 11:51:02 +00:00
pred = model(img)
pred = pred[pred[:, :, 4] > conf_thres]
2018-08-26 08:51:39 +00:00
if len(pred) > 0:
2019-02-08 21:43:05 +00:00
detections = non_max_suppression(pred.unsqueeze(0), conf_thres, nms_thres)[0]
# Draw bounding boxes and labels of detections
if detections is not None:
img = img0
# The amount of padding that was added
pad_x = max(img.shape[0] - img.shape[1], 0) * (img_size / max(img.shape))
pad_y = max(img.shape[1] - img.shape[0], 0) * (img_size / max(img.shape))
# Image height and width after padding is removed
unpad_h = img_size - pad_y
unpad_w = img_size - pad_x
unique_classes = detections[:, -1].cpu().unique()
# write results to .txt file
results_img_path = os.path.join(output, path.split('/')[-1])
results_txt_path = results_img_path + '.txt'
if os.path.isfile(results_txt_path):
os.remove(results_txt_path)
for i in unique_classes:
n = (detections[:, -1].cpu() == i).sum()
2019-02-08 21:55:01 +00:00
print('%g %ss' % (n, classes[int(i)]), end=', ')
2019-02-08 21:43:05 +00:00
for x1, y1, x2, y2, conf, cls_conf, cls_pred in detections:
# Rescale coordinates to original dimensions
box_h = ((y2 - y1) / unpad_h) * img.shape[0]
box_w = ((x2 - x1) / unpad_w) * img.shape[1]
2019-02-08 22:03:27 +00:00
y1 = (((y1 - pad_y // 2) / unpad_h) * img.shape[0]).round()
x1 = (((x1 - pad_x // 2) / unpad_w) * img.shape[1]).round()
x2 = (x1 + box_w).round()
y2 = (y1 + box_h).round()
2019-02-08 21:43:05 +00:00
x1, y1, x2, y2 = max(x1, 0), max(y1, 0), max(x2, 0), max(y2, 0)
# write to file
if save_txt:
with open(results_txt_path, 'a') as file:
2019-02-08 22:03:27 +00:00
file.write(('%g %g %g %g %g %g\n') % (x1, y1, x2, y2, cls_pred, cls_conf * conf))
2019-02-08 21:43:05 +00:00
if save_images:
2019-02-08 22:08:26 +00:00
# Add bbox to the image
2019-02-08 21:43:05 +00:00
label = '%s %.2f' % (classes[int(cls_pred)], conf)
2019-02-08 22:08:26 +00:00
plot_one_box([x1, y1, x2, y2], img, label=label, color=colors[int(cls_pred)])
2018-08-26 08:51:39 +00:00
if save_images:
2019-02-08 21:43:05 +00:00
# Save generated image with detections
2019-02-08 22:09:58 +00:00
cv2.imwrite(results_img_path, img)
2018-08-26 08:51:39 +00:00
2019-02-08 21:55:01 +00:00
print(' Done. (%.3fs)' % (time.time() - t))
2018-08-26 08:51:39 +00:00
2018-11-21 18:24:00 +00:00
if platform == 'darwin': # MacOS (local)
os.system('open ' + output)
2018-11-21 18:24:00 +00:00
2018-08-26 08:51:39 +00:00
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('--image-folder', type=str, default='data/samples', help='path to images')
parser.add_argument('--output-folder', type=str, default='output', help='path to outputs')
parser.add_argument('--cfg', type=str, default='cfg/yolov3.cfg', help='cfg file path')
2018-12-11 19:46:46 +00:00
parser.add_argument('--weights', type=str, default='weights/yolov3.pt', help='path to weights file')
parser.add_argument('--conf-thres', type=float, default=0.50, help='object confidence threshold')
parser.add_argument('--nms-thres', type=float, default=0.45, help='iou threshold for non-maximum suppression')
parser.add_argument('--img-size', type=int, default=32 * 13, help='size of each image dimension')
opt = parser.parse_args()
print(opt)
detect(
opt.cfg,
2018-12-11 19:46:46 +00:00
opt.weights,
opt.image_folder,
output=opt.output_folder,
img_size=opt.img_size,
conf_thres=opt.conf_thres,
nms_thres=opt.nms_thres,
)