2018-03-07から1日間の記事一覧

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

5-2 縮小 """ cv2.INTER_NEAREST 最近傍補間 """ 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_NEAREST) #描画する cv2.imshow("img_src",img_src) cv2.imshow("img_dst",img_dst) …