From f390b585f9ade43f91962c425bd8933c68ac4b08 Mon Sep 17 00:00:00 2001 From: Jordon Brooks Date: Wed, 26 Jul 2023 00:11:37 +0100 Subject: [PATCH] Commented out cv2 testing --- DeepEncode.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DeepEncode.py b/DeepEncode.py index a488562..b42e998 100644 --- a/DeepEncode.py +++ b/DeepEncode.py @@ -33,9 +33,9 @@ def predict_in_chunks(uncompressed_frames, model, crf_values, preset_speed_value num_sequences = len(uncompressed_frames) - NUM_FRAMES + 1 compressed_frames = [] - for frame in uncompressed_frames: - cv2.imshow("frame", frame) - cv2.waitKey(50) + #for frame in uncompressed_frames: + # cv2.imshow("frame", frame) + # cv2.waitKey(50) for start in range(0, num_sequences, CHUNK_SIZE): end = min(start + CHUNK_SIZE, num_sequences)