C++は「N,X,Y,Z」形式のテキストファイルをEigen 3 Matrixに読み込む


C++は、「N,X,Y,Z」形式のテキストファイルをEigen 3 Matrixに読み込むとともに、同じ形式の出力方法です。
多くのデータ資料のフォーマットは同じです。
1、-2085738.7757,550 3702.697,2892977.6829
2,-2071267.5135,5520926.7 235,2883341.8135
3,-2079412.535,5512450.800,2879771.2119
4,-2093693.174,5511218.2651,2869861.8947
5、-2113681.5962,5491864.0382,2896934.852
6,-21053.2849,54965.0138,2894377.6030
ここで、データはN(ポイント番号)、X、Y、Z(三次元座標)で並べ替えられます。
ここでは、「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の内容を読み込んでください。以前の文章を検索したり、下記の関連記事を引き続きご覧ください。これからもよろしくお願いします。