You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In some cases, image size is not included in the Exif. If Image is called without an image size specified, it will fetch it from Exif.imgsz but not check whether the result is None. Setting Camera.imgsz to None results in the bizarre [-9223372036854775808, -9223372036854775808] due to casting to integer data type, which then causes other issues.
The text was updated successfully, but these errors were encountered:
In some cases, image size is not included in the Exif. If
Image
is called without an image size specified, it will fetch it fromExif.imgsz
but not check whether the result isNone
. SettingCamera.imgsz
toNone
results in the bizarre[-9223372036854775808, -9223372036854775808]
due to casting to integer data type, which then causes other issues.The text was updated successfully, but these errors were encountered: