gpt4 book ai didi

python - 没有名为 ‘picamera' 的模块

转载 作者:行者123 更新时间:2023-11-28 19:28:40 26 4
gpt4 key购买 nike

我关注了这个网站( https://www.pyimagesearch.com/2015/03/30/accessing-the-raspberry-pi-camera-with-opencv-and-python/ ) 来设置我的 picamera,但我的 picamera 模块有问题。我确实安装了picamera模块,这张图片来自pip freeze。

https://imgur.com/a/3y5b2rO

您可以看到我已经有了 picamera 1.13,但是当我尝试 test_image.py 时,它显示“没有名为‘picamera’的模块”。

https://imgur.com/a/XMEXwXJ

卸载安装了很多次,还是报错。我该如何解决这个问题?

test_image.py

# import the necessary packages
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()
rawCapture = PiRGBArray(camera)

# allow the camera to warmup
time.sleep(0.1)

# grab an image from the camera
camera.capture(rawCapture, format="bgr")
image = rawCapture.array

# display the image on screen and wait for a keypress
cv2.imshow("Image", image)
cv2.waitKey(0)

最佳答案

对于 python3,您必须在命令下方尝试此操作。请记住,您需要在主目录中打开终端。

sudo -H apt install python3-picamera
sudo -H pip3 install --upgrade picamera[array]

让我知道它是否有效!

关于python - 没有名为 ‘picamera' 的模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55028280/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com