1. 程式人生 > >【opencv---Mat&&陣列】

【opencv---Mat&&陣列】

在opencv自帶的機器學習中經常用到對資料的預處理,本片部落格純屬為了練習熟悉轉化過程;

1.將txt文字資料內的帶空格間隔的二維數字陣列轉化到Mat的訓練中

#include<iostream>
#include<vector>
#include<string>
#include<sstream>
#include<fstream>
using namespace std;


void main() {
	float a[3][3]{ {0} };
	string str;
	vector<float>s;
	ifstream fin("123.txt");
	int k = 0;
	while(getline(fin,str))
	{
		int x = 0;
		float i;
		stringstream ss(str);
		while (ss>>i)
		{
			a[k][x]=i;
			cout << i << " ";
			x++;
		}
		k++;
		cout << endl;
	}


	for (int i = 0;i < 3;i++) {
		for (int j = 0;j < 3;j++) {
			cout << a[i][j] << " ";
		}
		cout << endl;
	}
	getchar();

}