-
Notifications
You must be signed in to change notification settings - Fork 3
/
predict_prius_fastai.py
210 lines (167 loc) · 6.95 KB
/
predict_prius_fastai.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
import json
import re
import queue
import time
import threading
from fastai import *
from fastai.vision import *
from PIL import Image
import requests
import numpy as np
import argparse
import time
import cv2
import os
import torch
device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")
print(device)
learn = load_learner("./", "resnet50_color.pkl")
# construct the argument parse and parse the arguments
ap = argparse.ArgumentParser()
ap.add_argument("-i", "--image", required=False,
help="path to input image")
ap.add_argument("-y", "--yolo", default='yolo-coco',
help="base path to YOLO directory")
ap.add_argument("-c", "--confidence", type=float, default=0.5,
help="minimum probability to filter weak detections")
ap.add_argument("-t", "--threshold", type=float, default=0.3,
help="threshold when applying non-maxima suppression")
args = vars(ap.parse_args())
# load the COCO class labels our YOLO model was trained on
labelsPath = os.path.sep.join([args["yolo"], "coco.names"])
LABELS = open(labelsPath).read().strip().split("\n")
# initialize a list of colors to represent each possible class label
np.random.seed(42)
COLORS = np.random.randint(0, 255, size=(len(LABELS), 3),
dtype="uint8")
# derive the paths to the YOLO weights and model configuration
weightsPath = os.path.sep.join([args["yolo"], "yolov3.weights"])
configPath = os.path.sep.join([args["yolo"], "yolov3.cfg"])
# load our YOLO object detector trained on COCO dataset (80 classes)
print("[INFO] loading YOLO from disk...")
net = cv2.dnn.readNetFromDarknet(configPath, weightsPath)
def write_json(data, filename="mobilenet.json"):
with open(filename,"w") as f:
json.dump(data, f, indent=4)
def save_result(prediction, file):
print("Saving...")
with open("mobilenet.json") as json_file:
data = json.load(json_file)
temp = data
# python object to be appended
y = {
"category": str(prediction[0]),
"class": str(prediction[1]),
"prob": str(prediction[2][prediction[1]]),
"image": file
}
temp.append(y)
write_json(data)
def predictCar(stra, file):
try:
img = open_image(stra)
prediction = learn.predict(img)
print("img: " + file + " label: " + str(prediction[0]) + " class: " + str(prediction[1]) + " prob: " + str(format(prediction[2][prediction[1]].item(), '.15f')))
if "prius_blue" in str(prediction[0]):
print("Image " + file + " - Interesting Result: " + str(prediction[0]))
save_result(prediction, file)
os.rename("./frames/" + file, "./interesting/" + file)
else:
os.rename("./frames/" + file, "./frames2/"+ file)
except:
os.remove("./frames/" + file)
def detectCars(img,file, net):
image = cv2.imread(img)
(H, W) = image.shape[:2]
# determine only the *output* layer names that we need from YOLO
layer_names = net.getLayerNames()
output_layers = [layer_names[i[0] - 1] for i in net.getUnconnectedOutLayers()]
# construct a blob from the input image and then perform a forward
# pass of the YOLO object detector, giving us our bounding boxes and
# associated probabilities
blob = cv2.dnn.blobFromImage(image, 1 / 255.0, (416, 416),
swapRB=True, crop=False)
net.setInput(blob)
start = time.time()
outputs = net.forward(output_layers)
end = time.time()
# show timing information on YOLO
#print("[INFO] YOLO took {:.6f} seconds".format(end - start))
# initialize our lists of detected bounding boxes, confidences, and
# class IDs, respectively
boxes = []
confidences = []
classIDs = []
# loop over each of the layer outputs
for output in outputs:
# loop over each of the detections
for detection in output:
# extract the class ID and confidence (i.e., probability) of
# the current object detection
scores = detection[5:]
classID = np.argmax(scores)
confidence = scores[classID]
# filter out weak predictions by ensuring the detected
# probability is greater than the minimum probability
if confidence > 0.5:
# scale the bounding box coordinates back relative to the
# size of the image, keeping in mind that YOLO actually
# returns the center (x, y)-coordinates of the bounding
# box followed by the boxes' width and height
box = detection[0:4] * np.array([W, H, W, H])
(centerX, centerY, width, height) = box.astype("int")
# use the center (x, y)-coordinates to derive the top and
# and left corner of the bounding box
x = int(centerX - (width / 2))
y = int(centerY - (height / 2))
# update our list of bounding box coordinates, confidences,
# and class IDs
boxes.append([x, y, int(width), int(height)])
confidences.append(float(confidence))
classIDs.append(classID)
# apply non-maxima suppression to suppress weak, overlapping bounding
# boxes
idxs = cv2.dnn.NMSBoxes(boxes, confidences, 0.5,
0.3)
# ensure at least one detection exists
if len(idxs) > 0:
# loop over the indexes we are keeping
for i in idxs.flatten():
# extract the bounding box coordinates
(x, y) = (boxes[i][0], boxes[i][1])
(w, h) = (boxes[i][2], boxes[i][3])
# draw a bounding box rectangle and label on the image
color = [int(c) for c in COLORS[classIDs[i]]]
if classIDs[i] == 2:
predictCar(img, file)
else:
print("Removing file: " + file)
os.remove("./frames/" + file)
def predict():
while True:
try:
file = q.get()
net = cv2.dnn.readNetFromDarknet(configPath, weightsPath)
print("Detecting..")
detectCars("./frames/" + file, file, net)
except Exception as e:
if os.path.exists("./frames/"+ file):
os.remove("./frames/"+file)
net = None
q.task_done()
def start_predicting():
print("Starting Predictions")
procs = 2
for i in range(0, procs):
process = threading.Thread(target=predict)
threads.append(process)
for t in threads:
t.start()
q = queue.Queue()
threads = []
start_predicting()
count = 0
arr = os.listdir("./frames/")
for file in arr:
if file.endswith("jpg"):
q.put(file)