Playback layout change

This commit is contained in:
MikeTheWatchGuy 2018-11-21 08:44:20 -05:00
parent b8fe33a2e2
commit 99efdb6fb4
1 changed files with 1 additions and 3 deletions

View File

@ -87,7 +87,6 @@ win_started = False
if use_webcam: if use_webcam:
cap = cv2.VideoCapture(0) cap = cv2.VideoCapture(0)
while True: while True:
sg.TimerStart()
# read the next frame from the file or webcam # read the next frame from the file or webcam
if use_webcam: if use_webcam:
grabbed, frame = cap.read() grabbed, frame = cap.read()
@ -192,7 +191,7 @@ while True:
if not win_started: if not win_started:
win_started = True win_started = True
layout = [ layout = [
[sg.Text('Yolo Output')], [sg.Text('Yolo Playback in PySimpleGUI Window', size=(30,1))],
[sg.Image(data=imgbytes, key='_IMAGE_')], [sg.Image(data=imgbytes, key='_IMAGE_')],
[sg.Text('Confidence'), [sg.Text('Confidence'),
sg.Slider(range=(0, 1), orientation='h', resolution=.1, default_value=.5, size=(15, 15), key='confidence'), sg.Slider(range=(0, 1), orientation='h', resolution=.1, default_value=.5, size=(15, 15), key='confidence'),
@ -213,7 +212,6 @@ while True:
break break
gui_confidence = values['confidence'] gui_confidence = values['confidence']
gui_threshold = values['threshold'] gui_threshold = values['threshold']
sg.TimerStop()
win.Close() win.Close()