如何在 openCV2 中保存视频蒙版 python

How to save masks of videos in openCV2 python

我可以使用此代码从网络摄像头捕获视频并妥善保存

cap = cv2.VideoCapture(0)
fgbg= cv2.BackgroundSubtractorMOG()

fourcc = cv2.cv.CV_FOURCC(*'DIVX')
out    = cv2.VideoWriter('output.avi', fourcc, 20.0, (640,480))

while(cap.isOpened()):
    ret,frame = cap.read()
    if ret:
        fgmask = fgbg.apply(frame)
        out.write(frame)          #Save it                                      
        cv2.imshow('Background Subtraction', fgmask)
        if cv2.waitKey(1) & 0xFF == ord('q'):
            break                 #q to quit                                    
    else:
        break                     #EOF                                          

cap.release()
out.release()
cv2.destroyAllWindows()

这记录了人们所期望的,并且还显示了背景减法。它将它保存到 output.avi。一切都很好。但是我无法保存前景蒙版,它给了我一个 Could not demultiplex stream 错误。 (此行在上面的代码中已更改)。

out.write(fgmask)          #Save it    

这是为什么? fgmask 不是像我从捕获中读取时那样的帧吗?

好的,明白了!让我知道是否有更有效的方法来做到这一点,或者我是否遗漏了什么..

背景减除中生成的前景掩码是一个8位的二值图像,所以我们必须将它转换成不同的格式。可能存在更好的,但我使用了 RGB

frame = cv2.cvtColor(fgmask, cv2.COLOR_GRAY2RGB)