Guest User

Untitled

a guest
Apr 26th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. # Create video writer
  2. writer = cv2.VideoWriter("sample_output.avi",
  3. cv2.VideoWriter_fourcc(*"MJPG"),
  4. 30,(1800,480))
  5.  
  6. for frame in tqdm(merged_maps):
  7. writer.write(frame.astype('uint8'))
  8.  
  9. writer.release()
Add Comment
Please, Sign In to add comment