proper handling of crop param (fixes #208)

This commit is contained in:
Blake Blackshear 2020-09-20 20:53:39 -05:00
parent b35cc01035
commit 309c0dcda3

View File

@ -384,7 +384,7 @@ def main():
best_object = object_processor.get_best(camera_name, label)
best_frame = best_object.get('frame', np.zeros((720,1280,3), np.uint8))
crop = bool(request.args.get('crop', 0))
crop = bool(request.args.get('crop', 0, type=int))
if crop:
region = best_object.get('region', [0,0,300,300])
best_frame = best_frame[region[1]:region[3], region[0]:region[2]]