使用Raspberry Pi 4和PiCam时的分割错误

2024-05-18 02:27:13 发布

您现在位置:Python中文网/ 问答频道 /正文

我正在为大学做一个项目,我正在尝试创建一个程序,每4秒左右使用PiCam拍摄一张照片,然后计算图像的亮度

程序在第一个循环中起作用,但在第二个循环中,当程序出现分段错误时,程序会中断

错误如下:

mmal: mmal_vc_port_enable: failed to enable port vc.null_sink:in:0(OPQV): ENOSPC
mmal: mmal_port_enable: failed to enable connected port (vc.null_sink:in:0(OPQV))0x15fb150 (ENOSPC)
mmal: mmal_connection_enable: output port couldn't be enabled

Backend terminated or disconnected.Fatal Python error: Segmentation fault

Current thread 0xb6f25ad0 (most recent call first):
File "/usr/lib/python3/dist-packages/picamera/mmalobj.py", line 1331 in _get_framesize
File "/usr/lib/python3/dist-packages/picamera/mmalobj.py", line 1325 in __repr__
File "/usr/lib/python3/dist-packages/thonny/backend.py", line 864 in export_value
File "/usr/lib/python3/dist-packages/thonny/backend.py", line 880 in export_variables
File "/usr/lib/python3/dist-packages/thonny/backend.py", line 927 in _export_stack
File "/usr/lib/python3/dist-packages/thonny/backend.py", line 1027 in _prepare_user_exception
File "/usr/lib/python3/dist-packages/thonny/backend.py", line 1218 in wrapper
File "/usr/lib/python3/dist-packages/thonny/backend.py", line 1259 in execute_source
File "/usr/lib/python3/dist-packages/thonny/backend.py", line 815 in _execute_source
File "/usr/lib/python3/dist-packages/thonny/backend.py", line 801 in _execute_file
File "/usr/lib/python3/dist-packages/thonny/backend.py", line 403 in _cmd_Run
File "/usr/lib/python3/dist-packages/thonny/backend.py", line 204 in handle_command
File "/usr/lib/python3/dist-packages/thonny/backend.py", line 146 in mainloop
File "/usr/lib/python3/dist-packages/thonny/backend_launcher.py", line 87 in <module> Use 'Stop/Restart' to restart.

这是我的代码:

import PIL
from PIL import Image
from picamera import PiCamera
from time import sleep

def take_picture():
    #setting the camera
    camera = PiCamera()
    #resolution to (min = 64x64)(max = 2592, 1944)
    camera.resolution = (64, 64)
    #camera take picture
    camera.capture('/home/pi/Desktop/image1.jpg')
#END take_picture
    
def current_average_luma():
    take_picture()
    img = Image.open("/home/pi/Desktop/image1.jpg") #opens image
    
    luma=0 #sum of the luma of each pixels
    pixels = img.width*img.height #number of pixels
    
    for x in range(img.width):
        for y in range(img.height):
            (r, g, b) = img.getpixel((x,y))#get colour touple 
            luma += (0.2126*r + 0.7152*g + 0.0722*b) #calculate luma of RGB data, then add to total
        #END for
    #END for
            
    img.close()#ensure to properly close the image
    return luma/pixels #return average of all pixels
#END average_luma

while (1):
    
    print("the average luma of the image is: ", current_average_luma()) #print light value

    sleep(4)
#END while

我不知道如何解决这个问题,也不知道是什么原因造成的。任何建议都将不胜感激

Picture of entire error message


Tags: ofinpybackendimglumalibpackages
1条回答
网友
1楼 · 发布于 2024-05-18 02:27:13

通过执行以下操作修复了代码:

from PIL import Image
from picamera import PiCamera
from time import sleep
    
def current_average_luma(camera):
    camera.capture('/home/pi/Desktop/image1.jpg')#camera take picture
    img = Image.open("/home/pi/Desktop/image1.jpg") #opens image
    
    luma=0 #sum of the luma of each pixels
    pixels = img.width*img.height #number of pixels
    
    for x in range(img.width):
        for y in range(img.height):
            (r, g, b) = img.getpixel((x,y))#get colour touple 
            luma += (0.2126*r + 0.7152*g + 0.0722*b) #calculate luma of RGB data, then add to total
        #END for
    #END for
            
    img.close()#ensure to properly close the image
    return luma/pixels #return average of all pixels
#END average_luma


#MAIN
camera = PiCamera()#setting the camera
camera.resolution = (64, 64)#set resolution

while (1):   
    print("the average luma of the image is: ", current_average_luma(camera)) #print light value

    sleep(4)
#END while

问题在于,take_picture()的重复函数调用创建了多个摄影机对象,从而产生了冲突

相关问题 更多 >