現在の配列をフレーム画像で行われたぼかし操作の出力配列として使用したいのですが、次のエラーが発生します。
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))