diff --git a/ppocr/utils/utility.py b/ppocr/utils/utility.py index 05b788c4cbf338ad4611d76cb4b32940f4307d14..a196e1496124aa548b705430c930f109249c9cdc 100755 --- a/ppocr/utils/utility.py +++ b/ppocr/utils/utility.py @@ -82,6 +82,7 @@ def check_and_read_gif(img_path): ret, frame = gif.read() if not ret: logging.info("Cannot read {}. This gif image maybe corrupted.") + return None, False if len(frame.shape) == 2 or frame.shape[-1] == 1: frame = cv2.cvtColor(frame, cv2.COLOR_GRAY2RGB) imgvalue = frame[:, :, ::-1]