Corrupt JPEG data: 2 extraneous bytes before marker 0x
【摘要】 参考:http://www.voidcn.com/article/p-dusgpwtd-bpv.html
cv2.imread(absolute_path) 有时会报错:
Corrupt JPEG data: 2 extraneous bytes before marker 0xd9
‘Premature end of JPEG file’是使用cv2(python版的op...
参考:http://www.voidcn.com/article/p-dusgpwtd-bpv.html
cv2.imread(absolute_path) 有时会报错:
Corrupt JPEG data: 2 extraneous bytes before marker 0xd9
‘Premature end of JPEG file’是使用cv2(python版的opencv)读取图片时出现的警告,警告代码位于libjpeg中,
-
JMESSAGE(JWRN_JFIF_MAJOR, "Warning: unknown JFIF revision number %d.%02d")
-
184 JMESSAGE(JWRN_JPEG_EOF, "Premature end of JPEG file")
-
185 JMESSAGE(JWRN_MUST_RESYNC,
-
186 "Corrupt JPEG data: found marker 0x%02x instead of RST%d")
具体链接为https://github.com/opencv/opencv/search?utf8=%E2%9C%93&q=JWRN_JPEG_EOF
在调试定位图像时,确实发现图像有破损。
二、解决方法
为了让python代码捕捉异常,程序修改如下:
-
try:
-
img = Image.open(absolute_path)
-
except IOError:
-
print(absolute_path)
-
try:
-
img= np.asarray(img)
-
except :
-
print('corrupt img',absolute_path)
absolute_path为文件的完整路径(绝对路径),即文件路径+文件名
文章来源: blog.csdn.net,作者:网奇,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/jacke121/article/details/79608149
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)