gpt4 book ai didi

opencv 读取图像 “Premature end of JPEG file”

转载 作者:太空宇宙 更新时间:2023-11-03 22:56:07 26 4
gpt4 key购买 nike

我正在使用 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 读取图像 “Premature end of JPEG file”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30237613/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com