先贴代码(非常简单的代码)
#include "opencv2/imgproc.hpp"
#include "opencv2/highgui.hpp"
#include "opencv2/ml.hpp"
#include "opencv2/objdetect.hpp"
#include <iostream>
#include <time.h>
using namespace cv;
using namespace cv::ml;
using namespace std;
int main()
{vector<String> fn;String s = "E:/c++code/data/train_image/test/*.png";vector<Mat> images;size_t count = fn.size(); //number of png files in images folderfor (size_t i = 0; i<count; i++)images.push_back(imread(fn[i]));waitKey(0);return 0;
}
试了各种办法包括将String的应用。包的导入等等都不可以。弄了一天都行,都是下边这个错误
研究了一天,一直以为是代码的问题。最后的最后试一下Release模式。结果运行通了。我醉了。。。。。。
索性就对Debug和Release做了一个小小的查询。