opencv實現圖像縮放效果

本文實例為大傢分享瞭opencv實現圖像縮放效果的具體代碼,供大傢參考,具體內容如下

圖像縮放:

圖像縮放即對圖像的大小進行調整,即放大或者縮小

cv2.resize(src,dsize,fx=0,fy=0,interpolation=cv2.INTER_LINEAR)

參數:

實現代碼:

import cv2 as cv
import matplotlib.pyplot as plt
# 中文顯示配置
plt.rcParams['font.sans-serif']=['SimHei']  # 用來正常顯示中文標簽
plt.rcParams['axes.unicode_minus']=False  # 用來正常顯示負號

# 載入圖像
img0 = cv.imread('img/img1.jpeg')

# 圖像縮放
# 絕對尺寸縮放
rows, cols = img0.shape[:2]
res0 = cv.resize(img0,(3*cols,3*rows),interpolation=cv.INTER_CUBIC)
# 相對尺寸縮放,若用相對縮放則第二個參數要設置為None
res1 = cv.resize(img0, None, fx = 0.5, fy = 0.5)

# 查看圖像大小
print(res0.shape)
print(res1.shape)
print(img0.shape)

# 圖像顯示
fig, axes = plt.subplots(nrows=1,ncols=3,figsize=(10,8),dpi=100)
axes[0].imshow(res0[:,:,::-1])
axes[0].set_title("絕對尺度放大")
axes[1].imshow(res1[:,:,::-1])
axes[1].set_title("相對尺度縮小")
axes[2].imshow(img0[:,:,::-1])
axes[2].set_title("原圖")
plt.show()

運行結果:

以上就是本文的全部內容,希望對大傢的學習有所幫助,也希望大傢多多支持WalkonNet。

推薦閱讀: