RaspberryPi
$ sudo apt-get install libopencv-dev
$ sudo apt-get install python-opencv
--Erstellen Sie ein Python-Skript zum Überprüfen der Operation auf RasPi (Graustufenkonvertierung). --lena wurde aus dem WEB entfernt
cvTest.py
import cv2
img = cv2.imread('lena.jpg')
img_gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
cv2.imwrite('lena_gray.jpg', img_gray)
--Ausführen
RaspberryPi
$ python cvTest.py
Recommended Posts