summaryrefslogtreecommitdiff
path: root/preprocess.py
diff options
context:
space:
mode:
Diffstat (limited to 'preprocess.py')
-rw-r--r--preprocess.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/preprocess.py b/preprocess.py
index 8af58f2..91fa8c2 100644
--- a/preprocess.py
+++ b/preprocess.py
@@ -51,7 +51,7 @@ def result_handler(frame_: torch.Tensor) -> tuple[torch.Tensor, torch.Tensor]:
mask_x1 = (mask_xc + mask_half_width).ceil().int()
# Skip incomplete frames
- if (height < 64 or width < 64 / MASK_BOX_RATIO) \
+ if (height < 64 or width < 64 / BOX_RATIO_THRESHOLD[1]) \
or (mask_x0 < 0 or mask_x1 > 320) \
or (mask_y0 < 0 or mask_y1 > 240):
continue