"driver/include/conv_common.hpp" did not exist on "97ba755f2f93c6470e31f5e2265e8d5ccbf53e53"
Commit 33f302e5 authored by WenmuZhou's avatar WenmuZhou
Browse files

support img_h < 32

parent ed2b527c
......@@ -185,8 +185,8 @@ class DetResizeForTest(object):
resize_h = int(h * ratio)
resize_w = int(w * ratio)
resize_h = int(round(resize_h / 32) * 32)
resize_w = int(round(resize_w / 32) * 32)
resize_h = max(int(round(resize_h / 32) * 32), 32)
resize_w = max(int(round(resize_w / 32) * 32), 32)
try:
if int(resize_w) <= 0 or int(resize_h) <= 0:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment