AttributeError Traceback (most recent call last)
in
18 success, img = video.read()
19 success2, bg = oceanVideo.read()
---> 20 bg = resize(bg,ref_img)
21 if flag==0:
22 ref_img = img
in resize(dst, img)
4
5 def resize(dst,img):
----> 6 width = img.shape[1]
7 height = img.shape[0]
8 dim = (width, height)
AttributeError: 'NoneType' object has no attribute 'shape'