opencv CvMLData的簡單使用

既然如此發表於2014-04-07


資料如上圖


#include "stdafx.h"
#include <opencv2/opencv.hpp>
#include <opencv2/opencv_modules.hpp>
using namespace std;
using namespace cv;
int _tmain(int argc, _TCHAR* argv[])
{
	 


	 CvMLData data;
	 int num = data.read_csv("train.csv");//讀取訓練的資料

	 const Mat a = data.get_values();//得到全部資料
	 cout<<a<<endl;
	 data.set_response_idx(0);//設定訓練標籤
	 const Mat b = data.get_responses();//得到訓練的標籤
	 const CvTrainTestSplit train1(0.5f);
	 const CvTrainTestSplit *train3;
	 train3 = &train1;
	 data.set_train_test_split(train3);//隨機分出train3 中的百分比為訓練樣本
	 const Mat cc = data.get_train_sample_idx();//得到訓練的樣本位置,(對應第幾行)
	 cout<<b<<endl;
	 cout<<cc<<endl;

	
	return 0;
}


顯示結果,具體使用可以根據這個基礎上修改。

相關文章