MVE - Multi-View Environment mve-devel
|
#include <cstring>
#include <cerrno>
#include <stdexcept>
#include <fstream>
#include <string>
#include "util/exception.h"
#include "math/vector.h"
#include "mve/mesh.h"
#include "mve/mesh_io_npts.h"
Go to the source code of this file.
Namespaces | |
namespace | mve |
Multi-View Environment library. | |
namespace | mve::geom |
Geometric tools, loading and processing functions. | |
Functions | |
TriangleMesh::Ptr | mve::geom::load_npts_mesh (std::string const &filename, bool format_binary=false) |
Simple importer for Kazhdan's .npts ASCII and binary files. | |
void | mve::geom::save_npts_mesh (TriangleMesh::ConstPtr mesh, std::string const &filename, bool format_binary=false) |
Simple exporter for Kazhdan's .npts ASCII and binary files. | |