我在树莓派上运行了基本的python程序。它没有问题。但是我试图通过另一台计算机(如SSH)登录到pi,并运行相同的python程序,这给了我错误,例如视频无法正常工作。我究竟做错了什么。我是否需要强制RPI使用其监视器来完成这项工作?有什么建议么?
我收到此错误:
无法初始化服务器:无法连接:连接被拒绝
(视频:1363):Gtk-警告**:无法打开显示屏:
这是我的程序:
from picamera.array import PiRGBArray
from picamera import PiCamera
import time
import cv2
# initialize the camera and grab a reference to the raw camera capture
camera = PiCamera()
camera.resolution = (640, 480)
camera.framerate = 32
rawCapture = PiRGBArray(camera, size=(640, 480))
# allow the camera to warmup
time.sleep(0.1)
# capture frames from the camera
for frame in camera.capture_continuous(rawCapture, format="bgr", use_video_port=True):
# grab the raw NumPy array representing the image, then initialize the timestamp
# and occupied/unoccupied text
image = frame.array
# show the frame
cv2.imshow("Frame", image)
key = cv2.waitKey(1) & 0xFF
# clear the stream in preparation for the next frame
rawCapture.truncate(0)
# if the `q` key was pressed, break from the loop
if key == ord("q"):
break
答案 0 :(得分:1)
export DISPLAY=:0
,然后运行您的代码。
如果您在没有上述代码的情况下运行它,它将在当前的shell中运行它。简而言之,当您导出显示时,您正在连接到正在运行的树莓派会话的当前实例,它的行为就像您在本地运行它一样。
NOTE
在某些情况下,您需要export DISPLAY=:0.0
。只需在Google上搜索您的操作系统即可。