slow down the preview feed to lower cpu usage

This commit is contained in:
Blake Blackshear 2019-12-15 07:17:13 -06:00
parent 480175d70f
commit b7b4e38f62

View File

@ -120,8 +120,8 @@ def main():
def imagestream(camera_name): def imagestream(camera_name):
while True: while True:
# max out at 5 FPS # max out at 1 FPS
time.sleep(0.2) time.sleep(1)
frame = cameras[camera_name].get_current_frame_with_objects() frame = cameras[camera_name].get_current_frame_with_objects()
# encode the image into a jpg # encode the image into a jpg
ret, jpg = cv2.imencode('.jpg', frame) ret, jpg = cv2.imencode('.jpg', frame)