c++ 用 opencv 读 txt 文件里图片的坑

在Linux里,按下面这样写,可能图片读不出来,img为空,但是在Windows里是可以的。

#include 
#include 
#include 
#include 

using namespace std;
using namespace cv;

int main()
{
	fstream file("name.txt",ios::in);
	string name;
	while(getline(file,name))
	{
		Mat img=imread(name,0);
		imshow("img",img);
		waitKey();
	}
	return 0;
}

需要对name进行转换,然后可以正常读取图片,不清楚是为什么。

#include 
#include 
#include 
#include 

using namespace std;
using namespace cv;

int main()
{
	fstream file("name.txt",ios::in);
	string name;
	while(getline(file,name))
	{
		string n;
		istringstream ss(name);
		ss>>n;                                         //转换
		Mat img=imread(n,0);
		imshow("img",img);
		waitKey();
	}
	return 0;
}

你可能感兴趣的:(图像处理,opencv,编程语言)