当前位置:  开发笔记 > 编程语言 > 正文

OpenCV imread不起作用

如何解决《OpenCVimread不起作用》经验,为你挑选了1个好方法。

我在我的C++代码中循环打开并处理一组图像.其中之一就是 样本输入 http://i.stack.imgur.com/rUJnp.gif

imread无法打开这个特定的.imread().dataNULL.

FWIW,我正在CentOS使用最新的opencv 2.4.8.有没有什么办法解决这一问题?如果不是,用另一个C++图像库打开它并将其转换为最简单的方法是什么cv::Mat



1> Mantosh Kuma..:

来自OpenCV文档imread

该函数imread从指定文件加载图像并返回它.如果无法读取图像(由于文件丢失,权限不正确,格式不受支持或无效),该函数将返回一个空矩阵(Mat::data==NULL).目前,支持以下文件格式:

    Windows bitmaps - *.bmp, *.dib (always supported)
    JPEG files - *.jpeg, *.jpg, *.jpe (see the Notes section)
    JPEG 2000 files - *.jp2 (see the Notes section)
    Portable Network Graphics - *.png (see the Notes section)
    Portable image format - *.pbm, *.pgm, *.ppm (always supported)
    Sun rasters - *.sr, *.ras (always supported)
    TIFF files - *.tiff, *.tif (see the Notes section)

因此.gifOpenCV不支持格式,因此imread返回NULL.

推荐阅读
贴进你的心聆听你的世界
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有