树莓派安装OpenCV后的示例小程序Python

编译了OpenCV,安装后,后面的事情就是测试了,给出下面一个简单的测试小程序,是Python的。

具体功能:启动摄像头,拍摄一张照片。仅仅是感受一下自己的东西能用了,Python写的。

from picamera.array import PiRGBArray
from picamera import PiCamera
import time
import cv2

camera=PiCamera()
rawCapture=PiRGBArray(camera)

time.sleep(0.1)
camera.capture(rawCapture,format="bgr")
image=rawCapture.array

cv2.imshow("Image",image)
cv2.waitKey(0)


你可能感兴趣的:(程序员)