Omnibus commited on
Commit
08fb439
·
1 Parent(s): a11a136

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -5
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
- print(this_im.shape())
71
- width, height = this_im.shape()
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)