如何修复谷歌云视觉的分段错误



我正在使用Google Cloud Vision API来检测从pi相机拍摄的捕获图像,如果图片被检测到为动物,它将删除图片,如果不是,它将运行另一个称为:takePicture(image_name(的函数。我的脚本运行良好,但大多数时候我有一个奇怪的问题,称为分段错误,当这种情况发生时,它不会中断我的 python 程序,但我的 4x4 键盘(连接到 RPi(停止工作,并且还自动创建另一个 python 程序的循环进程,即使有"键盘中断",它仍在运行。

def detectImage(self, image_name):
        path = '/home/pi/homesecurity/pictures/' + image_name
        max_results=1
        with open(path, 'rb') as image_file:
            content = image_file.read()
        image = vision.types.Image(content=content)
        objects = client.object_localization(image=image,max_results=max_results).localized_object_annotations
        for object_ in objects:
           if (object_.name == 'Animal' or object_.name == 'Cat' or object_.name == 'Dog' or object_.name == 'Bird' or object_.name == 'Insect'):
             print ('False Alarm: This is an animal!')
             os.remove('/home/pi/homesecurity/pictures/' + image_name) #Deletes the taken picture.
             print 'File', image_name, 'has beeen deleted'
             break
           else:
             Process(target=interact().takePicture(image_name)).start()
             print('Not an animal!')

旧硬件可能吗? 因为我使用的是Raspberry Pi Model B和Python 2.7

pi@raspberrypi:~ $ cat /proc/cpuinfo
processor       : 0
model name      : ARMv6-compatible processor rev 7 (v6l)
BogoMIPS        : 697.95
Features        : half thumb fastmult vfp edsp java tls
CPU implementer : 0x41
CPU architecture: 7
CPU variant     : 0x0
CPU part        : 0xb76
CPU revision    : 7
Hardware        : BCM2835
Revision        : 000e
Serial          : 0000000095fec982
pi@raspberrypi:~ $ cat /etc/os-release
PRETTY_NAME="Raspbian GNU/Linux 9 (stretch)"
NAME="Raspbian GNU/Linux"
VERSION_ID="9"
VERSION="9 (stretch)"
ID=raspbian
ID_LIKE=debian
HOME_URL="http://www.raspbian.org/"
SUPPORT_URL="http://www.raspbian.org/RaspbianForums"
BUG_REPORT_URL="http://www.raspbian.org/RaspbianBugs"

分段错误发生在 python 程序尝试使用无法访问的内存时。这意味着它没有请求的资源。

看看这个答案,并尝试找出正在发生的事情。我认为这可能是由于您的树莓派提供的计算能力低。也许你可以用这个分配更多。

相关内容

  • 没有找到相关文章

最新更新