Fix bad check on np.array (#6968)

This commit is contained in:
Nicolas Mowen 2023-06-30 07:06:38 -06:00 committed by GitHub
parent 0a8249d6fb
commit f3f9b36e07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1118,7 +1118,7 @@ def latest_frame(camera_name):
height = int(request.args.get("h", str(frame.shape[0])))
width = int(height * frame.shape[1] / frame.shape[0])
if not frame:
if frame is None:
return "Unable to get valid frame from {}".format(camera_name), 500
if height < 1 or width < 1: