Explorar o código

proper handling of crop param (fixes #208)

Blake Blackshear %!s(int64=4) %!d(string=hai) anos
pai
achega
309c0dcda3
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      detect_objects.py

+ 1 - 1
detect_objects.py

@@ -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]]