Corrected variable name

This commit is contained in:
Christopher Svensson 2020-07-28 10:34:21 +02:00 committed by GitHub
parent 9e0601c090
commit 6007829bbf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -190,7 +190,7 @@ def track_camera(name, config, global_objects_config, frame_queue, frame_shape,
# load in the mask for object detection
if 'mask' in config:
mask = cv2.imread("/config/{}".format(config['mask']), cv2.IMREAD_GRAYSCALE)
if img.size == 0:
if mask.size == 0:
print(f"Failed to read mask file")
else:
mask = None