未验证 提交 e0352617 编写于 作者: F Feng Ni 提交者: GitHub

fix truncated image reading (#4936)

上级 0c2f474f
......@@ -17,7 +17,8 @@ from __future__ import division
import os
import cv2
import numpy as np
from PIL import Image, ImageDraw
from PIL import Image, ImageDraw, ImageFile
ImageFile.LOAD_TRUNCATED_IMAGES = True
from collections import deque
......
......@@ -18,7 +18,8 @@ from __future__ import division
import os
import cv2
import numpy as np
from PIL import Image, ImageDraw
from PIL import Image, ImageDraw, ImageFile
ImageFile.LOAD_TRUNCATED_IMAGES = True
import math
......
......@@ -23,7 +23,8 @@ import time
import numpy as np
import typing
from PIL import Image, ImageOps
from PIL import Image, ImageOps, ImageFile
ImageFile.LOAD_TRUNCATED_IMAGES = True
import paddle
import paddle.distributed as dist
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册