We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d06d87d commit 70e5c0fCopy full SHA for 70e5c0f
detect_video.py
@@ -25,6 +25,7 @@
25
flags.DEFINE_string('output_format', 'XVID', 'codec used in VideoWriter when saving video to file')
26
flags.DEFINE_float('iou', 0.45, 'iou threshold')
27
flags.DEFINE_float('score', 0.25, 'score threshold')
28
+flags.DEFINE_boolean('dont_show', False, 'dont show video output')
29
30
def main(_argv):
31
config = ConfigProto()
@@ -109,7 +110,9 @@ def main(_argv):
109
110
result = np.asarray(image)
111
cv2.namedWindow("result", cv2.WINDOW_AUTOSIZE)
112
result = cv2.cvtColor(image, cv2.COLOR_RGB2BGR)
- cv2.imshow("result", result)
113
+
114
+ if not FLAGS.dont_show:
115
+ cv2.imshow("result", result)
116
117
if FLAGS.output:
118
out.write(result)
0 commit comments