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

## 5-2 縮小

""" cv2.INTER_LINEAR バイリニア補間(デフォルト) """

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

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

f:id:bitop:20180218070629p:plain

f:id:bitop:20180308052730p:plain