Spaces:
Runtime error
Runtime error
Commit
·
30935b4
1
Parent(s):
ceed5f5
chore: remove camera motion points
Browse files- inference.py +1 -4
inference.py
CHANGED
|
@@ -55,10 +55,7 @@ def inference(
|
|
| 55 |
transformations_getter = HomographyTransformationGetter()
|
| 56 |
|
| 57 |
motion_estimator = MotionEstimator(
|
| 58 |
-
max_points=500,
|
| 59 |
-
min_distance=7,
|
| 60 |
-
transformations_getter=transformations_getter,
|
| 61 |
-
draw_flow=True,
|
| 62 |
)
|
| 63 |
|
| 64 |
distance_function = iou if track_points == "bbox" else euclidean_distance
|
|
|
|
| 55 |
transformations_getter = HomographyTransformationGetter()
|
| 56 |
|
| 57 |
motion_estimator = MotionEstimator(
|
| 58 |
+
max_points=500, min_distance=7, transformations_getter=transformations_getter
|
|
|
|
|
|
|
|
|
|
| 59 |
)
|
| 60 |
|
| 61 |
distance_function = iou if track_points == "bbox" else euclidean_distance
|