C++"N,X,Y,Z"형식의 텍스트 파일 을 Eigen 3 Matrix 로 읽 습 니 다.

C++"N,X,Y,Z"형식의 텍스트 파일 을 Eigen 3 Matrix 로 읽 고 같은 형식의 출력 방법
많은 데이터 자료 의 형식 은 다음 과 같다.
1,-2085738.7757,5503702.8697,2892977.6829
2,-2071267.5135,5520926.7235,2883341.8135
3,-2079412.5535,5512450.8800,2879771.2119
4,-2093693.1744,5511218.2651,2869861.8947
5,-2113681.5062,5491864.0382,2896934.4852
6,-2100573.2849,5496675.0138,2894377.6030
그 중에서 데 이 터 는 N(포인트),X,Y,Z(3 차원 좌표)에 따라 정렬 된다.
"N,X,Y,Z"형식의 텍스트 파일 을 Eigen 3 Matrix 로 읽 는 방법 과 같은 형식의 출력 방법 을 제공 합 니 다.

#pragma once
#include <fstream>
#include <iostream>
#include <string>
#include <Eigen/Dense>
#include <vector>
#include <cmath>
#include <iomanip>

using namespace std;
using namespace Eigen;

//      
void SplitString(const std::string& s, std::vector<std::string>& v, const std::string& c)
{
 std::string::size_type pos1, pos2;
 pos2 = s.find(c);
 pos1 = 0;
 while (std::string::npos != pos2)
 {
 v.push_back(s.substr(pos1, pos2 - pos1));

 pos1 = pos2 + c.size();
 pos2 = s.find(c, pos1);
 }
 if (pos1 != s.length())
 v.push_back(s.substr(pos1));
}
//        xyz  
void ReadXYZFile(string filepath, MatrixXd& origin_data)
{
 ifstream infile;
 infile.open(filepath);
 cout << "Reading XYZ File: " << filepath << endl;
 if (!infile.is_open())
 {
 cout << "File Cannot Open" << endl;
 exit(1);
 }

 int r = 0; //       
 char buffer[100];
 while (!infile.eof())
 {
 // getline    char*,
 //  SplitString    string,
 //  atof     char* double
 infile.getline(buffer, 100);
 // cout << buffer << endl;
 string line = buffer;
 if (line == "")
 {
 continue;
 }
 vector<string> vector_data;
 SplitString(line, vector_data, ",");
 for (int c = 0; c < origin_data.cols(); c++)
 {
 origin_data(r, c) = atof(vector_data[c].c_str());
 }
 r++;

 }
 return;
}
//                   
void WriteXYZFile(string filepath, MatrixXd& trans_data)
{
 ofstream outfile;
 outfile.open(filepath, ios::out | ios::trunc);
 for (int r = 0; r < trans_data.rows(); r++)
 {
 for (int c = 0; c < trans_data.cols(); c++)
 {
 if (c < trans_data.cols() - 1)
 {
 outfile << trans_data(r, c) << ',';
 }
 if (c == trans_data.cols() - 1)
 {
 outfile << trans_data(r, c);
 }

 }
 outfile << endl;
 }
 cout << "Write XYZ File: " << filepath << endl;
 outfile.close();
 return;
}
총결산
여기 서 C++가"N,X,Y,Z"형식의 텍스트 파일 을 Eigen 3 Matrix 로 읽 는 것 에 관 한 이 글 은 여기까지 소개 되 었 습 니 다.더 많은 관련 c++텍스트 파일 을 읽 는 Eigen 3 Matrix 내용 은 우리 의 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 많은 지원 바 랍 니 다!

좋은 웹페이지 즐겨찾기