Fix minor header return.

This commit is contained in:
Daniel Santos-Olivan 2020-07-27 16:20:57 +02:00 committed by DSantosO
parent 92892ec8e9
commit 53f54ee0b7
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ namespace pointcloud {
"format ascii 1.0\n"
"element vertex " << std::to_string(static_cast<size_t>(std::distance(begin, end))) << "\n";
begin->WritePlyHeaderInfo(out);
out << "end_header\n";
out << "\nend_header\n";
out << std::fixed << std::setprecision(4u);
}
};

View File

@ -60,7 +60,7 @@ namespace data {
out << "property float32 x\n" \
"property float32 y\n" \
"property float32 z\n" \
"property float32 I\n";
"property float32 I";
}
void WriteDetection(std::ostream& out) const{