gpt4 book ai didi

Python-CV2改变维度和质量

转载 作者:行者123 更新时间:2023-12-01 05:55:06 25 4
gpt4 key购买 nike

我设法使用 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方法,但它不起作用。

最佳答案

您可以使用 opencv 调整大小:

img = cv2.resize(img, (640, 640))

将分辨率设置为 640x640,或

img = cv2.resize(img, (0,0), fx = 0.5, fy = 0.5)

将图像的每个尺寸减半。

如果你想要更差的质量,你可以使用模糊(我推荐高斯):

img = cv2.GaussianBlur(img, (15,15), 0)

如果您想要或多或少的模糊,请更改 (15,15)(这是内核大小)。

如果您想了解有关图像处理的更多信息,我发现这些非常有用:

OpenCV tutorials ,

OpenCV image processing

关于Python-CV2改变维度和质量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12988151/

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