opencv中批量读取图片并保存

时间:2024-03-27 19:28:53

opencv中批量读取图片并保存

2016年05月12日 21:13:12 hei_ya 阅读数:16556更多

个人分类: opencv

在生成训练集的时通常需要对文件夹中图片进行批处理,本文简要介绍图像批量读取、处理、保存的方法。

 

方法一:

1.生成图片描述文件

    对于有多幅图像的文件夹,首先生成txt文件,保存图片路径。

opencv中批量读取图片并保存

   在DOS模式下导入文件夹路径并生成TXT文件:

opencv中批量读取图片并保存

opencv中批量读取图片并保存

2.通过TXT批量处理图片

 

 
  1. <span style="font-size:18px;">#include<opencv2/opencv.hpp>

  2. #include<iostream>

  3. #include<time.h>

  4. #include<fstream>

  5.  
  6. using namespace std;

  7. using namespace cv;

  8.  
  9. void main()

  10. {

  11. ifstream file("C:/Users/Administrator/Desktop/date/MIT/MIT人脸库/faces/face.txt");

  12.  
  13. int img_index = 0;

  14.  
  15. while (!file.eof())

  16. {

  17. char txt_cont[200];

  18. file.getline(txt_cont,200);

  19.  
  20. char img_file[200],save_file[200];

  21.  
  22. sprintf(img_file, "C:/Users/Administrator/Desktop/date/MIT/MIT人脸库/faces/%s", txt_cont);

  23. sprintf(save_file, "C:/Users/Administrator/Desktop/date/MIT/MIT人脸库/save/%d.jpg", img_index);

  24.  
  25. Mat src = imread(img_file);

  26.  
  27. img_index++;

  28.  
  29. imwrite(save_file,src);

  30. }

  31.  
  32. }</span>

方法二:

利用Directory类实现文件夹中特定格式图像的遍历,Directory的头文件是windows.h。

 

 
  1. #include<opencv2/opencv.hpp>

  2. #include<iostream>

  3. #include<vector>

  4. #include<string>

  5. #include <windows.h>

  6.  
  7. using namespace std;

  8. using namespace cv;

  9.  
  10.  
  11. void main()

  12. {

  13. Directory dir;

  14.  
  15. string path1 = "C:\\Users\\Administrator\\Desktop\\date\\MIT\\MIT人脸库\\faces";

  16. string exten1 = "*.bmp";

  17.  
  18. vector<string> filenames = dir.GetListFiles(path1, exten1, false);

  19.  
  20. int size = filenames.size();

  21.  
  22. for (int i = 0; i < size;i++)

  23. {

  24. cout << filenames[i] << endl;

  25. }

  26. }

 

opencv中批量读取图片并保存

 

 

 

参考文献:

【1】http://blog.csdn.net/fengbingchun/article/details/42435901