OpenCV で画像をリサイズする
Python
Published: 2019-09-15

やったこと

OpenCV ライブラリを使い、画像をリサイズしてみます。

確認環境

$ python
Python 3.6.2 |Anaconda custom (64-bit)| (default, Sep 21 2017, 18:29:43)
[GCC 4.2.1 Compatible Clang 4.0.1 (tags/RELEASE_401/final)] on darwin
Type "help", "copyright", "credits" or "license" for more information.

調査

opencv-img-resize.py

import cv2

print(cv2.__version__)

img = cv2.imread('sample.jpg')
width, height = 600, 400
img = cv2.resize(img, (width, height))
cv2.imwrite('sample-resize2.jpg', img)

出力結果

$ python opencv-img-resize.py
3.4.2

参考