visualization
Browse files
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 =
|
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)
|