python - 使用OpenCV,Python,Raspberry Pi 3的Ball Tracker

标签 python opencv computer-vision raspberry-pi3

我试图在Raspberry Pi上运行此脚本,但是我一直遇到属性错误。
对于可能出现问题的任何帮助或指示,将不胜感激。
这是错误:

Traceback (most recent call last):
  File "/home/pi/ball-tracking/ball_tracking.py", line 48, in <module>
    frame = imutils.resize(frame, width=600)
  File "/usr/local/lib/python2.7/dist-packages/imutils/convenience.py", line 45, in resize
    (h, w) = image.shape[:2]
AttributeError: 'NoneType' object has no attribute 'shape'
这是我的代码:
# python ball_tracking.py --video ball_tracking_example.mp4
# python ball_tracking.py

# import the necessary packages
from collections import deque
import numpy as np
import argparse
import imutils
import cv2

# construct the argument parse and parse the arguments
ap = argparse.ArgumentParser()
ap.add_argument("-v", "--video",
    help="path to the (optional) video file")
ap.add_argument("-b", "--buffer", type=int, default=64,
    help="max buffer size")
args = vars(ap.parse_args())

# define the lower and upper boundaries of the "green"
# ball in the HSV color space, then initialize the
# list of tracked points
greenLower = (29, 86, 6)
greenUpper = (64, 255, 255)
pts = deque(maxlen=args["buffer"])

# if a video path was not supplied, grab the reference
# to the webcam
if not args.get("video", False):
    camera = cv2.VideoCapture(0)

# otherwise, grab a reference to the video file
else:
    camera = cv2.VideoCapture(args["video"])

# keep looping
while True:
    # grab the current frame
    (grabbed, frame) = camera.read()

    # if we are viewing a video and we did not grab a frame,
    # then we have reached the end of the video
    if args.get("video") and not grabbed:
        break

    # resize the frame, blur it, and convert it to the HSV
    # color space
    frame = imutils.resize(frame, width=600)
    # blurred = cv2.GaussianBlur(frame, (11, 11), 0)
    hsv = cv2.cvtColor(frame, cv2.COLOR_BGR2HSV)

    # construct a mask for the color "green", then perform
    # a series of dilations and erosions to remove any small
    # blobs left in the mask
    mask = cv2.inRange(hsv, greenLower, greenUpper)
    mask = cv2.erode(mask, None, iterations=2)
    mask = cv2.dilate(mask, None, iterations=2)

    # find contours in the mask and initialize the current
    # (x, y) center of the ball
    cnts = cv2.findContours(mask.copy(), cv2.RETR_EXTERNAL,
        cv2.CHAIN_APPROX_SIMPLE)[-2]
    center = None

    # only proceed if at least one contour was found
    if len(cnts) > 0:
        # find the largest contour in the mask, then use
        # it to compute the minimum enclosing circle and
        # centroid
        c = max(cnts, key=cv2.contourArea)
        ((x, y), radius) = cv2.minEnclosingCircle(c)
        M = cv2.moments(c)
        center = (int(M["m10"] / M["m00"]), int(M["m01"] / M["m00"]))

        # only proceed if the radius meets a minimum size
        if radius > 10:
            # draw the circle and centroid on the frame,
            # then update the list of tracked points
            cv2.circle(frame, (int(x), int(y)), int(radius),
                (0, 255, 255), 2)
            cv2.circle(frame, center, 5, (0, 0, 255), -1)

    # update the points queue
    pts.appendleft(center)

    # loop over the set of tracked points
    for i in xrange(1, len(pts)):
        # if either of the tracked points are None, ignore
        # them
        if pts[i - 1] is None or pts[i] is None:
            continue

        # otherwise, compute the thickness of the line and
        # draw the connecting lines
        thickness = int(np.sqrt(args["buffer"] / float(i + 1)) * 2.5)
        cv2.line(frame, pts[i - 1], pts[i], (0, 0, 255), thickness)

    # show the frame to our screen
    cv2.imshow("Frame", frame)
    key = cv2.waitKey(1) & 0xFF

    # if the 'q' key is pressed, stop the loop
    if key == ord("q"):
        break

# cleanup the camera and close any open windows
camera.release()
cv2.destroyAllWindows()

最佳答案

似乎frame在这一行中作为None返回,好像您的相机无法读取图像:

(grabbed, frame) = camera.read()

然后,当调整None对象的大小时,程序将如错误消息AttributeError: 'NoneType' object has no attribute 'shape'中所述爆炸:
frame = imutils.resize(frame, width=600)

this thread中所述,某些相机驱动程序可能会在第一帧中返回False, None。可能的解决方法是验证grabbed是否为False并忽略此帧。
while True:
    grabbed, frame = camera.read()

    if not grabbed:
        continue

    # the rest of the program

关于python - 使用OpenCV,Python,Raspberry Pi 3的Ball Tracker,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39165715/

相关文章:

c# - 如何在 xamarin 或 c# 或 python 中检测图像中的所有分隔线?

python - 将视频帧读取为字节数据

python - 错误: 'utf-8' codec can't decode byte 0xb0 in position 14: invalid start byte

python - 我怎么知道哪个参数在 Python 中抛出异常(使用 OpenCV)?

Python 解包陷阱(意外行为)

c++ - 无关垫在 inRange 期间被无法解释的覆盖

opencv - SIFT 未在 OpenCV 中的引用图像中找到任何特征

opencv - 从凸点获取角

python - WGAN-GP 列车损失较大

python - Pandas、matplotlib 和plotly - 如何修复系列图例?