在 OpenCV 中,可以使用 VideoWriter 类来设置视频的宽和高。
示例代码:
import cv2# 设置视频宽为 640,高为 480
width = 640
height = 480
# 创建 VideoWriter 对象
fourcc = cv2.VideoWriter_fourcc(*'MJPG')
out = cv2.VideoWriter('output.avi', fourcc, 20.0, (width, height))
# 使用该对象写入视频帧
for i in range(100):
frame = cv2.imread(