Hinweise zur Einführung von OpenCV in Raspberry pi ...
$ sudo apt-get install python python-dev
$ sudo apt-get install python-numpy python-scipy python-matplotlib
Es ist mühsam zu bauen und es braucht Zeit, also benutze apt-get Ich habe mich auf diesen Bereich bezogen Erstellen Sie eine OpenCV-Python-Umgebung auf Raspberry Pi B + Install OpenCV and Python on your Raspberry Pi 2 and B+
$ sudo apt-get install libopencv-dev
Apt-get Python-Paket
$ sudo apt-get install python-opencv
Ich denke, es wird ungefähr 5 Minuten dauern.
Ich habe es mit dieser Quelle versucht.
capture.py
#coding:utf-8
import cv2
color = (0, 2, 2)
def capture_camera(mirror=True, size=None):
cap = cv2.VideoCapture(1)
while True:
ret, frame = cap.read()
if mirror is True:
frame = frame[:,::-1]
if size is not None and len(size) == 2:
frame = cv2.resize(frame, size)
cv2.imshow('camera capture', frame)
k = cv2.waitKey(1)
if k == 27:
break
elif k== 'q':
break
cap.release()
cv2.destroyAllWindows()
capture_camera()
Wenn du denkst
GdkGLExt-WARNING **: Window system doesn't support OpenGL.
Fehlermeldung! Es scheint anders zu sein, wenn Sie denken, dass vnc die Ursache ist.
Fix Dies war vorerst die Lösung.
sudo apt-get install libgl1-mesa-dri
Und
sudo reboot
Es hat sicher funktioniert. Es hat auch auf vnc funktioniert.
Ich habe mich auf diesen Bereich bezogen. Raspberry Pi Kamera und OpenCV Probleme Troubleshooting
Recommended Posts