我正在使用Python 3.6.1
OpenCV版本3.2.0
我在createBackgroundSubtractorMOG
中遇到以下错误fgbg = cv2.createBackgroundSubtractorMOG()
AttributeError: module 'cv2' has no attribute 'createBackgroundSubtractorMOG'
当我用BackgroundSubtractorMOG替换它时,我也得到了以下错误。
fgbg = cv2.BackgroundSubtractorMOG()
AttributeError: module 'cv2' has no attribute 'BackgroundSubtractorMOG'