gpt4 book ai didi

python - 如何设置VideoCapture的窗口大小?

转载 作者:行者123 更新时间:2023-12-02 16:52:18 27 4
gpt4 key购买 nike

在以下代码片段中,我将如何设置捕获窗口的大小?我想拍摄256 * 256像素的图片。

import numpy as np
import cv2

cap = cv2.VideoCapture(0)

while(True):
ret, frame = cap.read()
cv2.imshow('img1',frame)
if cv2.waitKey(1) & 0xFF == ord('y'):
cv2.imwrite('imag.png',frame)
cv2.destroyAllWindows()
cap.release()

最佳答案

您也可以使用OpenCV的resize函数,或者如果只对捕获图像的特定区域感兴趣,可以对帧进行 slice 。

关于python - 如何设置VideoCapture的窗口大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58975435/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com