Spaces:
Runtime error
Runtime error
Aumentar resolución
Browse files
app.py
CHANGED
|
@@ -181,8 +181,8 @@ def paint_point_track(
|
|
| 181 |
return video
|
| 182 |
|
| 183 |
|
| 184 |
-
PREVIEW_WIDTH =
|
| 185 |
-
VIDEO_INPUT_RESO = (
|
| 186 |
POINT_SIZE = 4 # Size of the query point in the preview video
|
| 187 |
FRAME_LIMIT = 256000000000 # Limit the number of frames to process
|
| 188 |
|
|
|
|
| 181 |
return video
|
| 182 |
|
| 183 |
|
| 184 |
+
PREVIEW_WIDTH = 1280 # Width of the preview video
|
| 185 |
+
VIDEO_INPUT_RESO = (720, 1280) # Resolution of the input video
|
| 186 |
POINT_SIZE = 4 # Size of the query point in the preview video
|
| 187 |
FRAME_LIMIT = 256000000000 # Limit the number of frames to process
|
| 188 |
|