使用 cv2.resize 变换尺寸
时间: 2023-10-17 07:27:23 浏览: 94
使用cv2.resize函数可以实现图像的尺寸变换。该函数的语法为:
dst = cv2.resize(src, dsize=(new_width, new_height), fx, fy, interpolation)
其中,src表示原始图像,dsize表示目标图像的尺寸,可以直接输入新的宽度和高度,也可以通过设置缩放因子fx和fy实现倍数的放大和缩小。interpolation表示变换的方法,有多种选项可供选择,如最近邻插值法(CV_INTER_NN)、双线性插值法(CV_INTER_LINEAR)和双三次插值法(CV_INTER_CUBIC)等。
下面是一个使用cv2.resize函数的示例代码:
def resize_demo(image):
print("Origin size:", image.shape)
# 第一种方法:通过fx,fy缩放因子
res = cv.resize(image, None, fx=1, fy=3, interpolation=cv.INTER_CUBIC) # fx宽 fy高
print("After resize 1 size:", res.shape)
# 第二种方法:直接设置输出图像的尺寸,所以不用设置缩放因子
height,width = image.shape[:2]
res=cv.resize(image,(2*width,2*height),interpolation=cv.INTER_CUBIC)
print("After resize 2 size:", res.shape)
while(1):
cv.imshow('res',res)
cv.imshow('img',image)
if cv.waitKey(1) & 0xFF == 27:
break
以上代码中,首先打印出原始图像的尺寸,然后使用两种不同的方法进行图像的尺寸变换,分别输出变换后的图像尺寸。最后通过cv.imshow函数显示变换后的图像,并通过按键输入来退出显示窗口。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* [python opencv 图像尺寸变换方法](https://download.csdn.net/download/weixin_38572979/14859623)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 33.333333333333336%"]
- *2* [【opencv】5.1 几何变换--缩放 cv2.resize()](https://blog.csdn.net/weixin_37804469/article/details/112256767)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 33.333333333333336%"]
- *3* [7. 图像的几何变换-cv2.resize()、cv2.warpAffine()、cv2.getRotationMatrix2D()、cv2.getAffineTransform...](https://blog.csdn.net/qq_38309818/article/details/111660562)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 33.333333333333336%"]
[ .reference_list ]
阅读全文