Interface2017年05月号新画像処理101を読む

技5 拡大/縮小

5-1 拡大

"""
cv2.INTER_NEAREST 最近傍補間
"""

img_src = cv2.imread("data/img_4-1.bmp")

img_dst = cv2.resize(img_src,None,fx=1.0, fy=1.3,interpolation=cv2.INTER_NEAREST)
#描画する
cv2.imshow("img_src",img_src)
cv2.imshow("img_dst",img_dst)
cv2.waitKey(0)
cv2.destroyAllWindows()

立て方向に1.3倍

f:id:bitop:20180218070629p:plain

f:id:bitop:20180306061510p:plain