python 无法识别的图像错误:无法识别0x000001F0D35EF180>处的映像文件〈_io.BytesIO对象[已关闭]

vlf7wbxs  于 2022-12-21  发布在  Python
关注(0)|答案(1)|浏览(154)

2小时前关门了。
Improve this question

images = []

for data in tqdm(jsonData):
    response = requests.get(data['content'])
    img = np.asarray(Image.open(BytesIO(response.content)))
    images.append([img, data["annotation"]])

图像中人脸检测

aiazj4mn

aiazj4mn1#

response.content必须包含pil的Image.open函数(如pngjpg)已知格式的编码图像数据。

相关问题