c ++在没有硬编码的情况下读入具有不同文件名的图像集

时间:2015-06-18 14:29:52

标签: c++ image opencv boost image-loading

是否有任何方法可以从文件中读取一组图像,这些图像的名称彼此不同,即根本没有连续性?

因此,如果您在同一文件夹中有4个图像,文件名为:

  1. head.jpg
  2. shoulders.png
  3. knees.tiff
  4. toes.bmp
  5. 如果不直接对文件名进行硬编码,那么你可以将 shoulder.png 更改为 arms.gif ,有没有办法加载它们?

    我目前有OpenCV和Boost可用

1 个答案:

答案 0 :(得分:2)

对于其他任何想知道:

#include <boost/filesystem.hpp>
namespace fs = boost::filesystem;
std::vector<cv::Mat> imageVec;
fs::path p ("."); 
fs::directory_iterator end_itr; 
// cycle through the directory
for (fs::directory_iterator itr(p); itr != end_itr; ++itr){
    // If it's not a directory, list it. If you want to list directories too, just remove this check.
    if (fs::is_regular_file(itr->path())) {
        if (fs::is_regular_file(itr->path())){
            cv::Mat img;
            img = cv::imread(itr->path().string());
            if(img.data) imagesVecc.push_back(img);
        }
        // assign current file name to current_file and echo it out to the console.
        std::string current_file = itr->path().string();
        std::cout << current_file << std::endl;
    }
}