xmrt commited on
Commit
f611bd8
·
1 Parent(s): 332fb03

visualization

Browse files
Files changed (1) hide show
  1. main.py +1 -4
main.py CHANGED
@@ -18,14 +18,11 @@ def poses(photo):
18
  thickness=2)
19
 
20
 
21
-
22
- video = cv2.VideoCapture(photo)
23
-
24
  # Prepare to save video
25
  output_file = os.path.join("output.mp4")
26
 
27
  fourcc = cv2.VideoWriter_fourcc(*"mp4v") # Codec for MP4 video
28
- fps = video.get(cv2.CAP_PROP_FPS)
29
  height = 480
30
  width = 640
31
  size = (width,height)
 
18
  thickness=2)
19
 
20
 
 
 
 
21
  # Prepare to save video
22
  output_file = os.path.join("output.mp4")
23
 
24
  fourcc = cv2.VideoWriter_fourcc(*"mp4v") # Codec for MP4 video
25
+ fps = 32
26
  height = 480
27
  width = 640
28
  size = (width,height)