def is_bounding_box_larger_than()

in seed/util/preprocess.py [0:0]


def is_bounding_box_larger_than(bbox, min_width=1, min_height=1.0):
    x0, y0, x1, y1 = bbox
    width = x1 - x0
    height = y1 - y0
    print(width, height)
    return width > min_width and height > min_height