summaryrefslogtreecommitdiff
path: root/preprocess.py
diff options
context:
space:
mode:
authorJordan Gong <jordan.gong@protonmail.com>2021-02-18 16:01:26 +0800
committerJordan Gong <jordan.gong@protonmail.com>2021-02-18 17:13:34 +0800
commitfd77ad26d5c4ede79e3406e736fcdaa29eb1c7c9 (patch)
tree163889734f97e4c2c94e607e9dd2312d1b8fc43d /preprocess.py
parent2a9507204ae2dd14504556ab5885c4f39bddd89a (diff)
Decode mean appearance feature
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