remove min frame height of 180 and increase contour area

This commit is contained in:
Blake Blackshear 2021-11-04 11:58:45 -05:00
parent 258215a3ae
commit e351e132f5

View File

@ -120,13 +120,11 @@ class RuntimeMotionConfig(MotionConfig):
frame_shape = config.get("frame_shape", (1, 1))
if "frame_height" not in config:
config["frame_height"] = max(frame_shape[0] // 6, 180)
config["frame_height"] = frame_shape[0] // 6
if "contour_area" not in config:
frame_width = frame_shape[1] * config["frame_height"] / frame_shape[0]
config["contour_area"] = (
config["frame_height"] * frame_width * 0.00173611111
)
config["contour_area"] = config["frame_height"] * frame_width * 0.004
mask = config.get("mask", "")
config["raw_mask"] = mask