-
Notifications
You must be signed in to change notification settings - Fork 1
/
worker.py
173 lines (132 loc) · 5.48 KB
/
worker.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
import os
import time
import cv2
import visualize
from PyQt5.QtCore import QThread, pyqtSignal
from enums import Actions, Requests
from enum import Enum
from lib import model as modellib
from lib import coco
# COCO model classes
class_names = ['BG', 'person', 'bicycle', 'car', 'motorcycle', 'airplane',
'bus', 'train', 'truck', 'boat', 'traffic light',
'fire hydrant', 'stop sign', 'parking meter', 'bench', 'bird',
'cat', 'dog', 'horse', 'sheep', 'cow', 'elephant', 'bear',
'zebra', 'giraffe', 'backpack', 'umbrella', 'handbag', 'tie',
'suitcase', 'frisbee', 'skis', 'snowboard', 'sports ball',
'kite', 'baseball bat', 'baseball glove', 'skateboard',
'surfboard', 'tennis racket', 'bottle', 'wine glass', 'cup',
'fork', 'knife', 'spoon', 'bowl', 'banana', 'apple',
'sandwich', 'orange', 'broccoli', 'carrot', 'hot dog', 'pizza',
'donut', 'cake', 'chair', 'couch', 'potted plant', 'bed',
'dining table', 'toilet', 'tv', 'laptop', 'mouse', 'remote',
'keyboard', 'cell phone', 'microwave', 'oven', 'toaster',
'sink', 'refrigerator', 'book', 'clock', 'vase', 'scissors',
'teddy bear', 'hair drier', 'toothbrush']
class InferenceConfig(coco.CocoConfig):
# Batch size = GPU_COUNT * IMAGES_PER_GPU
GPU_COUNT = 1
IMAGES_PER_GPU = 1
config = InferenceConfig()
config.print()
# Root directory
ROOT_DIR = os.getcwd()
# Log save directory
MODEL_DIR = os.path.join(ROOT_DIR, "logs")
# COCO model directory
COCO_MODEL_PATH = os.path.join(ROOT_DIR, "weights/mask_rcnn_coco.h5")
class Worker(QThread):
communicator = pyqtSignal(Enum)
frameChanged = pyqtSignal()
def __init__(self, parent=None):
print("Worker initialised")
QThread.__init__(self, parent=parent)
self.loadedWeights = False
self.stopped = True
self.paused = False
self.detectObjects = False
self.showMasks = False
self.showBoxes = False
self.saveVideo = False
self.fps = 0
def setVideo(self, filePath):
self.filePath = filePath
def setSave(self, filePath):
self.savePath = filePath
def handleRequest(self, request):
if request is Requests.START:
self.stopped = False
self.paused = False
if request is Requests.STOP:
self.stopped = True
self.paused = False
if request is Requests.PAUSE:
self.paused = True
if request is Requests.RESUME:
self.paused = False
if request is Requests.DETECT_ON:
self.detectObjects = True
if request is Requests.DETECT_OFF:
self.detectObjects = False
if request is Requests.MASKS_ON:
self.showMasks = True
if request is Requests.MASKS_OFF:
self.showMasks = False
if request is Requests.BOXES_ON:
self.showBoxes = True
if request is Requests.BOXES_OFF:
self.showBoxes = False
if request is Requests.SAVE_ON and self.stopped:
self.saveVideo = True
if request is Requests.SAVE_OFF and self.stopped:
self.saveVideo = False
def run(self):
self.communicator.emit(Actions.LOADING_WEIGHTS)
model = modellib.MaskRCNN(mode="inference", model_dir=MODEL_DIR, config=config)
model.load_weights(COCO_MODEL_PATH, by_name=True)
self.loadedWeights = True
self.communicator.emit(Actions.LOADED_WEIGHTS)
# While the video is playing
while True:
#
if self.stopped:
continue
# Loading video
self.capture = cv2.VideoCapture(self.filePath)
# We send a signal to the GUI to alerting that the video was successfully loaded
self.communicator.emit(Actions.LOADED_VIDEO)
# Creation of the output
if self.saveVideo:
width = self.capture.get(cv2.CAP_PROP_FRAME_WIDTH)
height = self.capture.get(cv2.CAP_PROP_FRAME_HEIGHT)
fps = self.capture.get(cv2.CAP_PROP_FPS)
dimensions = (int(width), int(height))
out = cv2.VideoWriter(self.savePath + '/output.mp4', cv2.VideoWriter_fourcc(*'MP4V'), fps, dimensions)
while not self.stopped:
startTime = time.time()
ret, frame = self.capture.read()
if frame is None:
self.stopped = True
break
# Detection
if self.detectObjects:
results = model.detect([frame], verbose=0)
r = results[0]
frame = visualize.display_instances(
frame, r['rois'], r['masks'], r['class_ids'], class_names, r['scores'], self.showMasks, self.showBoxes
)
if self.saveVideo:
out.write(frame)
cv2.imshow('frame', frame)
delta = time.time() - startTime
self.fps = 1 / delta
self.frameChanged.emit()
while self.paused:
continue
if cv2.waitKey(1) & 0xFF == ord('q'):
break
if self.saveVideo:
out.release()
self.capture.release()
cv2.destroyAllWindows()
self.communicator.emit(Actions.FINISHED)