def draw_bounding_box()

in src/lambda/notification_function.py [0:0]


def draw_bounding_box(draw, bbox, color='#FF0000'):
    pt1 = (bbox['Left'], bbox['Top'])
    pt2 = (bbox['Left'] + bbox['Width'], bbox['Top'] + bbox['Height'])

    draw.rectangle([pt1, pt2], outline=color, width=2)