更新 序列帧资源更换为video2.mp4

- 更换视频源从video.mp4到video2.mp4
- 重新提取400帧序列图(原336帧)
- 更新应用配置中的总帧数
This commit is contained in:
2026-03-29 01:37:55 +08:00
parent 26defd9d69
commit 427d99d87a
404 changed files with 3 additions and 3 deletions

View File

@@ -2,9 +2,9 @@ import cv2
import os
# 配置
video_path = r'J:\git\3D-pano\video.mp4'
video_path = r'J:\git\3D-pano\video2.mp4'
output_dir = r'J:\git\3D-pano\images'
total_frames = 336
total_frames = 400
# 确保输出目录存在
os.makedirs(output_dir, exist_ok=True)