glob在opencv3下,并且命名空间为cv::glob()能够直接调用,在官网中只说明了如下调用方式,并没有给出具体的例子。但通过使用可以知道函数目的是将pattern路径下的所用文件名存进result中。

void cv::glob(String pattern, std::vector< String > & result, bool recursive = false)

下面例子主要功能是打开”/home/rui”路径下所有的图片并显示出来:

#include "opencv2/imgproc.hpp"


int main()
{
    std::vector<cv::String> filenames; // notice here that we are using the Opencv's embedded "String" class
    cv::String folder = "/home/rui"; // again we are using the Opencv's embedded "String" class

    cv::glob(folder, filenames); // new function that does the job ;-)

    for(size_t i = 0; i < filenames.size(); ++i)
    {
        std::cout<<filenames[i]<<std::endl;
        cv::Mat src = cv::imread(filenames[i]);

        if(!src.data)
            std::cerr << "Problem loading image!!!" << std::endl;

        cv::imshow("temp",src);
        cv::waitKey(0);
        /* do whatever you want with your images here */
    }
}

 

Logo

魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。

更多推荐