2022-12-28から1日間の記事一覧

動画の扱い

動画の扱い WEBカメラから撮影した画像を画面に表示する import numpy as np import cv2 cap = cv2.VideoCapture(0) while(True): # Capture frame-by-frame ret, frame = cap.read() # Our operations on the frame come here gray = cv2.cvtColor(frame, c…

画像の読み込み・保存・表示

画像を扱う http://labs.eecs.tottori-u.ac.jp/sd/Member/oyamada/OpenCV/html/py_tutorials/py_gui/py_image_display/py_image_display.html#display-image img= cv2.imread('image.png',0) 画像を読み込む 第一引数はファイル名、第二引数は読み込みモード…

OpenCVチュートリアルのサイト

http://labs.eecs.tottori-u.ac.jp/sd/Member/oyamada/OpenCV/html/index.html 環境構築 NumpyとMatplotlibを入れる 以下を実行する py -m pip install opencv-python py -m pip install opencv-contrib-python