我使用OpenCV从文件夹中读取图像。很多这样的消息出现了:
Corrupt JPEG data: premature end of data segment
Premature end of JPEG file
Premature end of JPEG file
Premature end of JPEG file
如何捕获这个异常并删除这些图像文件?
既然您说您正在读取'图像'(多个图像),那么您将遍历正在读取它们的文件夹中的文件。在这种情况下,如果您使用以下命令检查图像是否有效:
Mat image;
image = imread(argv[1], CV_LOAD_IMAGE_COLOR); // Read the file
if(! image.data ) // Check for invalid input
{
cout << "Could not open or find the image" << std::endl ;
return -1;
}
你可以继续删除损坏的文件
我也一直在努力寻找解决方案。阅读数十篇文章,其中大多数只是说明openCV不会抛出错误,只在stderr上输出错误。有些人建议使用PIL,但这并不能检测到大多数图像损坏。通常只是提前结束文件。
然而,OpenCV警告的相同错误可以通过imagemagick检测到。
- 安装imagemagick (https://imagemagick.org/)
- 确保你有它的路径。将以下子代码放入代码中,并调用它来从需要的地方验证文件。它也输出错误到stderr,但是它会引发一个错误(由于"- regards -warnings")
import subprocess
def checkFile(imageFile):
try:
subprocess.run(["identify", "-regard-warnings", imageFile]).check_returncode()
return true
except (subprocess.CalledProcessError) as e:
return false
如果您不想检查您的输出,请将stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL
参数添加到run函数调用中。
在windows上,如果您没有安装遗留命令,请使用新的语法:
subprocess.run(["magick", "identify", "-regard-warnings", imageFile]).check_returncode()