Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -67,15 +67,12 @@ def capture_function(vid=None):
|
|
67 |
def im_2_vid(images,fps):
|
68 |
#width, height = Image.open(images[0]).size
|
69 |
this_im=cv2.imread(images[0])
|
70 |
-
|
71 |
-
width
|
72 |
print (width,height)
|
73 |
size = (width, height)
|
74 |
codec = cv2.VideoWriter_fourcc(*'mp4v') #DIVX, DIVD
|
75 |
video = cv2.VideoWriter(vidName, codec, fps, size)
|
76 |
-
|
77 |
-
#Do not open images in 'Image' as well as 'CV2', else following error occurs
|
78 |
-
#<built-in function imread> returned NULL without setting an error
|
79 |
for img in images:
|
80 |
video.write(img)
|
81 |
return (video)
|
|
|
67 |
def im_2_vid(images,fps):
|
68 |
#width, height = Image.open(images[0]).size
|
69 |
this_im=cv2.imread(images[0])
|
70 |
+
height=this_im.shape[0]
|
71 |
+
width= this im.shape[1]
|
72 |
print (width,height)
|
73 |
size = (width, height)
|
74 |
codec = cv2.VideoWriter_fourcc(*'mp4v') #DIVX, DIVD
|
75 |
video = cv2.VideoWriter(vidName, codec, fps, size)
|
|
|
|
|
|
|
76 |
for img in images:
|
77 |
video.write(img)
|
78 |
return (video)
|