时间:2021-05-20
C++读入"N,X,Y,Z"格式文本文件到Eigen3 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(三维坐标)排序。
这里提供一种C++读入"N,X,Y,Z"格式文本文件到Eigen3 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"格式文本文件到Eigen3 Matrix的文章就介绍到这了,更多相关c++ 读入文本文件Eigen3 Matrix内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
一般情况下x,y,z=1,2,3print("x:",x)print("y:",y)print("z:",z)#运行结果x:1y:2z:3对元祖序列解包name
1.案例要求:"""有列表["a","d","f","j","z","Z","1"],对列表进行倒序,打印结果为["1","Z","z","j","f","d"
1、已有文本文件:stringdataList;使用fopen读取:FILE*fpListFile=fopen(dataList.c_str(),"r");if
今天用python解析一个文本文件,格式如下:复制代码代码如下:[{"Key":"android.permission.ACCESS_CHECKIN_PROPE
本文主要介绍了R语言中矩阵matrix和数据框data.frame的一些使用,分享给大家,具体如下:"一,矩阵matrix""创建向量"x_1=c(1,2,3)