car-detection-bayes/detect.py

110 lines
3.9 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
2019-02-10 20:06:22 +00:00
def detect(
cfg,
weights,
images,
output='output',
img_size=416,
conf_thres=0.3,
nms_thres=0.45,
save_txt=False,
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)
2019-02-08 22:20:41 +00:00
model.load_state_dict(torch.load(weights, map_location='cpu')['model'])
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 22:28:00 +00:00
dataloader = load_images(images, img_size=img_size)
2019-02-08 21:43:05 +00:00
2019-02-10 20:41:57 +00:00
# Get classes and colors
classes = load_classes(parse_data_cfg('cfg/coco.data')['names'])
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-09 18:24:51 +00:00
for i, (path, img, im0) 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
2019-02-10 20:06:22 +00:00
img = torch.from_numpy(img).unsqueeze(0).to(device)
if ONNX_EXPORT:
2019-02-10 20:41:57 +00:00
torch.onnx._export(model, img, 'weights/model.onnx', verbose=True)
2019-02-10 20:06:22 +00:00
return # ONNX export
pred = model(img)
pred = pred[pred[:, :, 4] > conf_thres]
2018-08-26 08:51:39 +00:00
2019-02-10 20:06:22 +00:00
if len(pred) > 0:
detections = non_max_suppression(pred.unsqueeze(0), conf_thres, nms_thres)[0]
2019-02-08 21:43:05 +00:00
2019-02-10 20:06:22 +00:00
# Draw bounding boxes and labels of detections
if detections is not None:
2019-02-11 11:26:30 +00:00
save_path = os.path.join(output, path.split('/')[-1])
2019-02-08 21:43:05 +00:00
2019-02-10 20:06:22 +00:00
# Rescale boxes from 416 to true image size
detections[:, :4] = scale_coords(img_size, detections[:, :4], im0.shape)
2019-02-08 21:43:05 +00:00
2019-02-10 20:06:22 +00:00
unique_classes = detections[:, -1].cpu().unique()
for i in unique_classes:
n = (detections[:, -1].cpu() == i).sum()
print('%g %ss' % (n, classes[int(i)]), end=', ')
2019-02-08 21:43:05 +00:00
2019-02-11 11:26:30 +00:00
for x1, y1, x2, y2, conf, cls_conf, cls in detections:
2019-02-10 20:06:22 +00:00
if save_txt: # Write to file
2019-02-11 11:26:30 +00:00
with open(save_path + '.txt', 'a') as file:
file.write('%g %g %g %g %g %g\n' % (x1, y1, x2, y2, cls, cls_conf * conf))
2019-02-08 21:43:05 +00:00
2019-02-10 20:06:22 +00:00
if save_images: # Add bbox to the image
2019-02-11 11:26:30 +00:00
label = '%s %.2f' % (classes[int(cls)], conf)
plot_one_box([x1, y1, x2, y2], im0, label=label, color=colors[int(cls)])
2018-08-26 08:51:39 +00:00
2019-02-10 20:06:22 +00:00
if save_images: # Save generated image with detections
2019-02-11 11:26:30 +00:00
cv2.imwrite(save_path, im0)
2018-08-26 08:51:39 +00:00
2019-02-11 11:27:11 +00:00
print('Done. (%.3fs)' % (time.time() - t))
2018-08-26 08:51:39 +00:00
2019-02-08 22:15:55 +00:00
if platform == 'darwin': # MacOS
2019-02-11 11:26:30 +00:00
os.system('open ' + output + '&& open ' + save_path)
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('--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')
2019-02-08 22:28:00 +00:00
parser.add_argument('--images', type=str, default='data/samples', help='path to images')
parser.add_argument('--img-size', type=int, default=32 * 13, help='size of each image dimension')
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')
opt = parser.parse_args()
print(opt)
2019-02-10 20:06:22 +00:00
with torch.no_grad():
detect(
opt.cfg,
opt.weights,
opt.images,
img_size=opt.img_size,
conf_thres=opt.conf_thres,
nms_thres=opt.nms_thres
)