#include <PLYFile.h>
Classes | |
struct | PLYPoint |
Static Public Member Functions | |
static int | getNumberOfPoints (const std::string &filename) |
static void | readFile (const std::string &filename, std::vector< PLYPoint > &points) |
static void | saveFile (const std::string &filename, const std::vector< PLYPoint > &points) |
int PLYFile::getNumberOfPoints | ( | const std::string & | filename | ) | [static] |
Reads the header of the given filename and returns the number of points it contains
filename |
Definition at line 121 of file PLYFile.cpp.
void PLYFile::readFile | ( | const std::string & | filename, |
std::vector< PLYPoint > & | points | ||
) | [static] |
Reads a simply PLY file and returns its 3D points and colors
filename | |
points |
Definition at line 35 of file PLYFile.cpp.
void PLYFile::saveFile | ( | const std::string & | filename, |
const std::vector< PLYPoint > & | points | ||
) | [static] |
Reads a simply PLY file and returns its 3D points and colors
filename | |
points |
Definition at line 79 of file PLYFile.cpp.