Skip to content

Commit 70e5c0f

Browse files
Update detect_video.py with dont_show flag.
1 parent d06d87d commit 70e5c0f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

detect_video.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
flags.DEFINE_string('output_format', 'XVID', 'codec used in VideoWriter when saving video to file')
2626
flags.DEFINE_float('iou', 0.45, 'iou threshold')
2727
flags.DEFINE_float('score', 0.25, 'score threshold')
28+
flags.DEFINE_boolean('dont_show', False, 'dont show video output')
2829

2930
def main(_argv):
3031
config = ConfigProto()
@@ -109,7 +110,9 @@ def main(_argv):
109110
result = np.asarray(image)
110111
cv2.namedWindow("result", cv2.WINDOW_AUTOSIZE)
111112
result = cv2.cvtColor(image, cv2.COLOR_RGB2BGR)
112-
cv2.imshow("result", result)
113+
114+
if not FLAGS.dont_show:
115+
cv2.imshow("result", result)
113116

114117
if FLAGS.output:
115118
out.write(result)

0 commit comments

Comments
 (0)