opencv-python:不是一个numpy数组

时间:2013-01-25 02:24:36

标签: python arrays opencv numpy

我想使用当前数组作为帧图像中模糊操作的输出数组,并且我得到了这个错误:

TypeError: <unknown> is not a numpy array

我已经检查过,两者都是相同大小和类型的数组,我不明白为什么会这样。

部分代码:

previous = np.zeros((frameHeight,frameWidth,3),np.uint8) #blank image with 640x480 and 3 channels
difference = np.zeros((frameHeight,frameWidth,3),np.uint8)
current = np.zeros((frameHeight,frameWidth,3),np.uint8)

while True:
    # Capture a frame
    flag,frame = capture.read()
    cv2.flip(frame, flipCode=1)

    # Difference between frames
    cv2.blur(frame, current, (15,15))

2 个答案:

答案 0 :(得分:2)

cv2.blur的论据,如in the documentation所述,如下:

cv2.blur(src, ksize[, dst[, anchor[, borderType]]]) → dst

所以,我认为你的意思是

current= cv2.blur(frame, (15,15))

答案 1 :(得分:0)

您可能已使用 cv.CreateImage 而不是 cv2.imread 打开图像 只有在使用imread打开图像时才可以使用imwrite。