From 75ad666ccec718a3363e19d86cf4036d0f1c5adc Mon Sep 17 00:00:00 2001 From: frxz751113 <156018267+frxz751113@users.noreply.github.com> Date: Sat, 2 Nov 2024 08:55:28 +0800 Subject: [PATCH] =?UTF-8?q?Update=20=E6=B5=8B=E7=BB=98=E7=AB=99=E9=87=87?= =?UTF-8?q?=E9=9B=86.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- py/测绘站采集.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/py/测绘站采集.py b/py/测绘站采集.py index d08022a..f0cd2a2 100644 --- a/py/测绘站采集.py +++ b/py/测绘站采集.py @@ -275,8 +275,8 @@ for filename in os.listdir(folder_path): if not ret: break frame_count += 1 - # 如果在3秒内读取到63帧以上,设置成功标志 - if frame_count >= 60: + # 如果在3秒内读取到30帧以上,设置成功标志 + if frame_count >= 30: success = True break cap.release()