我设法用 Python 和 CV2 库拍了一张照片,但我想改变图像的尺寸并得到一些质量不高的东西,并将其调整为 640。
我的代码是:
cam = VideoCapture(0) # 0 -> index of camera
s, img = cam.read()
if s: # frame captured without any errors
imwrite(filename,img) #save image
我曾尝试使用该方法set
,但它不起作用。