v04 update 03

This commit is contained in:
13339479676 2022-01-18 08:45:44 +08:00
parent 586a34b5ec
commit d65e9b3c35
2 changed files with 2 additions and 2 deletions

View File

@ -133,7 +133,7 @@ def webcam_opencv(device_index="0",
if (is_autoSaveFrame): # 自动保存 if (is_autoSaveFrame): # 自动保存
if (auto_frameNum > 0 and frame_num > auto_frameNum): if (auto_frameNum > 0 and frame_num > auto_frameNum):
# 设置自动最大保存帧数 # 设置自动最大保存帧数
frame_num -= 1 frame_num -= 1 # 修复帧数显示问题
break break
if (frame_num % frame_nSave == 0): # 每隔n帧保存一次 if (frame_num % frame_nSave == 0): # 每隔n帧保存一次
frame_opt(frame, frame_savePath, frame_num, is_resizeFrame, resize_frame, resizeRatio_frame, frame_opt(frame, frame_savePath, frame_num, is_resizeFrame, resize_frame, resizeRatio_frame,

2
v04.md
View File

@ -14,4 +14,4 @@
- 解决docker vim中文乱码问题 - 解决docker vim中文乱码问题
- 修复部分文件名称 - 修复部分文件名称
- 修复手动保存帧数统计 - 修复手动保存帧数统计
- 修复自动帧数显示问题