0

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

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))
4

2 回答 2

2

的参数cv2.blur,如文档中所述,如下:

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

所以,我想你的意思是

current= cv2.blur(frame, (15,15))
于 2013-01-25T02:37:01.403 回答
0

可能您已经使用cv2.imread的 cv.CreateImage instread打开了图像 只有在使用 imread 打开图像时才能使用 imwrite。

于 2013-10-24T01:32:32.030 回答