Main MRPT website > C++ reference for MRPT 1.9.9
Classes | Macros | Typedefs | Enumerations | Functions | Variables
PLY_import_export.cpp File Reference
#include "base-precomp.h"
#include <mrpt/utils/PLY_import_export.h>
#include <mrpt/system/string_utils.h>
#include <stdio.h>

Go to the source code of this file.

Classes

struct  PlyProperty
 
struct  PlyElement
 
struct  PlyFile
 
struct  TVertex
 
struct  TFace
 

Macros

#define PLY_ASCII   1 /* ascii PLY file */
 
#define PLY_BINARY_BE   2 /* binary PLY file, big endian */
 
#define PLY_BINARY_LE   3 /* binary PLY file, little endian */
 
#define BIG_STRING   4096
 

Typedefs

typedef struct PlyProperty PlyProperty
 
typedef struct PlyElement PlyElement
 

Enumerations

enum  {
  PLY_START_TYPE = 0, PLY_CHAR = 1, PLY_SHORT = 2, PLY_INT = 3,
  PLY_UCHAR = 4, PLY_USHORT = 5, PLY_UINT = 6, PLY_FLOAT = 7,
  PLY_DOUBLE = 8, PLY_END_TYPE = 9
}
 

Functions

PlyElementfind_element (PlyFile *, const std::string &s)
 
PlyPropertyfind_property (PlyElement *, const std::string &s, int *)
 
void write_scalar_type (FILE *, int)
 
vector< stringget_words (FILE *, string &)
 
void write_binary_item (FILE *, int, unsigned int, double, int)
 
void write_ascii_item (FILE *, int, unsigned int, double, int)
 
void add_element (PlyFile *, const vector< string > &)
 
void add_property (PlyFile *, const vector< string > &)
 
void add_comment (PlyFile *, const string &)
 
void add_obj_info (PlyFile *, const string &)
 
void copy_property (PlyProperty *, const PlyProperty *)
 
void store_item (char *, int, int, unsigned int, double)
 
void get_stored_item (void *, int, int *, unsigned int *, double *)
 
double get_item_value (const char *, int)
 
void get_ascii_item (const char *, int, int *, unsigned int *, double *)
 
int get_binary_item (FILE *, int, int, int *, unsigned int *, double *)
 
void ascii_get_element (PlyFile *, char *)
 
void binary_get_element (PlyFile *, char *)
 
PlyFileply_write (FILE *fp, const vector< string > &elem_names, int file_type)
 
PlyFileply_open_for_writing (const char *name, const vector< string > &elem_names, int file_type, float *version)
 
void ply_describe_element (PlyFile *plyfile, const string &elem_name, int nelems, vector< PlyProperty > &prop_list)
 
void ply_describe_property (PlyFile *plyfile, const char *elem_name, const PlyProperty *prop)
 
void ply_element_count (PlyFile *plyfile, const string &elem_name, int nelems)
 
void ply_header_complete (PlyFile *plyfile)
 
void ply_put_element_setup (PlyFile *plyfile, const string &elem_name)
 
void ply_put_element (PlyFile *plyfile, void *elem_ptr)
 
void ply_put_comment (PlyFile *plyfile, const string &comment)
 
void ply_put_obj_info (PlyFile *plyfile, const string &obj_info)
 
PlyFileply_read (FILE *fp, vector< string > &elem_names)
 
PlyFileply_open_for_reading (const char *filename, vector< string > &elem_names, int *file_type, float *version)
 
vector< PlyPropertyply_get_element_description (PlyFile *plyfile, const string &elem_name, int &nelems, int &nprops)
 
void ply_get_property (PlyFile *plyfile, const string &elem_name, const PlyProperty *prop)
 
void ply_get_element (PlyFile *plyfile, void *elem_ptr)
 
void ply_get_comments (PlyFile *plyfile, vector< string > &comments)
 
void ply_get_obj_info (PlyFile *plyfile, vector< string > &obj_info)
 
void ply_close (PlyFile *plyfile)
 
void ply_get_info (PlyFile *ply, float *version, int *file_type)
 
double get_item_value (char *item, int type)
 
int get_prop_type (const string &type_name)
 

Variables

const int NO_OTHER_PROPS = -1
 
const char DONT_STORE_PROP = 0
 
const char STORE_PROP = 1
 
const char OTHER_PROP = 0
 
const char NAMED_PROP = 1
 
const std::string type_names []
 
const int ply_type_size [] = {0, 1, 2, 4, 1, 2, 4, 4, 8}
 
const float VAL_NOT_SET = -1e10
 
const PlyProperty vert_props []
 
const PlyProperty face_props []
 

Macro Definition Documentation

◆ BIG_STRING

#define BIG_STRING   4096

Referenced by get_words().

◆ PLY_ASCII

#define PLY_ASCII   1 /* ascii PLY file */

◆ PLY_BINARY_BE

#define PLY_BINARY_BE   2 /* binary PLY file, big endian */

◆ PLY_BINARY_LE

#define PLY_BINARY_LE   3 /* binary PLY file, little endian */

Typedef Documentation

◆ PlyElement

typedef struct PlyElement PlyElement

◆ PlyProperty

typedef struct PlyProperty PlyProperty

Enumeration Type Documentation

◆ anonymous enum

anonymous enum
Enumerator
PLY_START_TYPE 
PLY_CHAR 
PLY_SHORT 
PLY_INT 
PLY_UCHAR 
PLY_USHORT 
PLY_UINT 
PLY_FLOAT 
PLY_DOUBLE 
PLY_END_TYPE 

Definition at line 68 of file PLY_import_export.cpp.

Function Documentation

◆ add_comment()

void add_comment ( PlyFile plyfile,
const string line 
)

Definition at line 1794 of file PLY_import_export.cpp.

References ply_put_comment(), and mrpt::system::trim().

Referenced by ply_read().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ add_element()

void add_element ( PlyFile plyfile,
const vector< string > &  words 
)

Definition at line 1720 of file PLY_import_export.cpp.

References PlyFile::elems, PlyElement::name, and PlyElement::num.

Referenced by ply_read().

Here is the caller graph for this function:

◆ add_obj_info()

void add_obj_info ( PlyFile plyfile,
const string line 
)

Definition at line 1808 of file PLY_import_export.cpp.

References ply_put_obj_info(), and mrpt::system::trim().

Referenced by ply_read().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ add_property()

void add_property ( PlyFile plyfile,
const vector< string > &  words 
)

Definition at line 1760 of file PLY_import_export.cpp.

References PlyProperty::count_external, PlyFile::elems, PlyProperty::external_type, get_prop_type(), PlyProperty::is_list, PlyProperty::name, and PlyElement::props.

Referenced by ply_read().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ ascii_get_element()

void ascii_get_element ( PlyFile plyfile,
char *  elem_ptr 
)

◆ binary_get_element()

void binary_get_element ( PlyFile plyfile,
char *  elem_ptr 
)

◆ copy_property()

void copy_property ( PlyProperty dest,
const PlyProperty src 
)

Definition at line 1818 of file PLY_import_export.cpp.

◆ find_element()

PlyElement * find_element ( PlyFile plyfile,
const std::string s 
)

Definition at line 904 of file PLY_import_export.cpp.

References PlyFile::elems.

Referenced by ply_describe_element(), ply_describe_property(), ply_element_count(), ply_get_element_description(), ply_get_property(), and ply_put_element_setup().

Here is the caller graph for this function:

◆ find_property()

PlyProperty * find_property ( PlyElement elem,
const std::string s,
int *  index 
)

Definition at line 924 of file PLY_import_export.cpp.

References PlyElement::props.

Referenced by ply_get_property().

Here is the caller graph for this function:

◆ get_ascii_item()

void get_ascii_item ( const char *  word,
int  type,
int *  int_val,
unsigned int *  uint_val,
double *  double_val 
)

Definition at line 1613 of file PLY_import_export.cpp.

References PLY_CHAR, PLY_DOUBLE, PLY_FLOAT, PLY_INT, PLY_SHORT, PLY_UCHAR, PLY_UINT, and PLY_USHORT.

Referenced by ascii_get_element().

Here is the caller graph for this function:

◆ get_binary_item()

int get_binary_item ( FILE *  fp,
int  bin_file_type,
int  type,
int *  int_val,
unsigned int *  uint_val,
double *  double_val 
)

Definition at line 1513 of file PLY_import_export.cpp.

References PLY_BINARY_BE, PLY_BINARY_LE, PLY_CHAR, PLY_DOUBLE, PLY_FLOAT, PLY_INT, PLY_SHORT, PLY_UCHAR, PLY_UINT, PLY_USHORT, and mrpt::utils::reverseBytes().

Referenced by binary_get_element().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ get_item_value() [1/2]

double get_item_value ( const char *  ,
int   
)

◆ get_item_value() [2/2]

double get_item_value ( char *  item,
int  type 
)

◆ get_prop_type()

int get_prop_type ( const string type_name)

Definition at line 1740 of file PLY_import_export.cpp.

References PLY_END_TYPE, PLY_START_TYPE, and type_names.

Referenced by add_property().

Here is the caller graph for this function:

◆ get_stored_item()

void get_stored_item ( void ptr,
int  type,
int *  int_val,
unsigned int *  uint_val,
double *  double_val 
)

Definition at line 1445 of file PLY_import_export.cpp.

References PLY_CHAR, PLY_DOUBLE, PLY_FLOAT, PLY_INT, PLY_SHORT, PLY_UCHAR, PLY_UINT, and PLY_USHORT.

Referenced by ply_put_element().

Here is the caller graph for this function:

◆ get_words()

vector< string > get_words ( FILE *  fp,
string orig_line 
)

Definition at line 1250 of file PLY_import_export.cpp.

References ASSERT_, BIG_STRING, and mrpt::system::tokenize().

Referenced by ascii_get_element(), and ply_read().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ ply_close()

void ply_close ( PlyFile plyfile)

Definition at line 866 of file PLY_import_export.cpp.

References mrpt::system::os::fclose(), and PlyFile::fp.

Referenced by mrpt::utils::PLY_Importer::loadFromPlyFile(), and mrpt::utils::PLY_Exporter::saveToPlyFile().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ ply_describe_element()

void ply_describe_element ( PlyFile plyfile,
const string elem_name,
int  nelems,
vector< PlyProperty > &  prop_list 
)

Definition at line 281 of file PLY_import_export.cpp.

References find_element(), NAMED_PROP, PlyElement::num, PlyElement::props, and PlyElement::store_prop.

Here is the call graph for this function:

◆ ply_describe_property()

void ply_describe_property ( PlyFile plyfile,
const char *  elem_name,
const PlyProperty prop 
)

Definition at line 317 of file PLY_import_export.cpp.

References find_element(), mrpt::system::os::fprintf(), NAMED_PROP, PlyElement::props, and PlyElement::store_prop.

Referenced by mrpt::utils::PLY_Exporter::saveToPlyFile().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ ply_element_count()

void ply_element_count ( PlyFile plyfile,
const string elem_name,
int  nelems 
)

Definition at line 344 of file PLY_import_export.cpp.

References find_element(), and PlyElement::num.

Referenced by mrpt::utils::PLY_Exporter::saveToPlyFile().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ ply_get_comments()

void ply_get_comments ( PlyFile plyfile,
vector< string > &  comments 
)

Definition at line 833 of file PLY_import_export.cpp.

References PlyFile::comments.

Referenced by mrpt::utils::PLY_Importer::loadFromPlyFile().

Here is the caller graph for this function:

◆ ply_get_element()

void ply_get_element ( PlyFile plyfile,
void elem_ptr 
)

Definition at line 814 of file PLY_import_export.cpp.

References ascii_get_element(), binary_get_element(), PlyFile::file_type, and PLY_ASCII.

Referenced by mrpt::utils::PLY_Importer::loadFromPlyFile().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ ply_get_element_description()

vector<PlyProperty> ply_get_element_description ( PlyFile plyfile,
const string elem_name,
int &  nelems,
int &  nprops 
)

Definition at line 748 of file PLY_import_export.cpp.

References find_element(), PlyElement::num, and PlyElement::props.

Referenced by mrpt::utils::PLY_Importer::loadFromPlyFile().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ ply_get_info()

void ply_get_info ( PlyFile ply,
float *  version,
int *  file_type 
)

Definition at line 885 of file PLY_import_export.cpp.

References PlyFile::file_type, and PlyFile::version.

◆ ply_get_obj_info()

void ply_get_obj_info ( PlyFile plyfile,
vector< string > &  obj_info 
)

Definition at line 850 of file PLY_import_export.cpp.

References PlyFile::obj_info.

Referenced by mrpt::utils::PLY_Importer::loadFromPlyFile().

Here is the caller graph for this function:

◆ ply_get_property()

void ply_get_property ( PlyFile plyfile,
const string elem_name,
const PlyProperty prop 
)

◆ ply_header_complete()

void ply_header_complete ( PlyFile plyfile)

◆ ply_open_for_reading()

PlyFile* ply_open_for_reading ( const char *  filename,
vector< string > &  elem_names,
int *  file_type,
float *  version 
)

Definition at line 707 of file PLY_import_export.cpp.

References PlyFile::file_type, mrpt::system::os::fopen(), ply_read(), and PlyFile::version.

Referenced by mrpt::utils::PLY_Importer::loadFromPlyFile().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ ply_open_for_writing()

PlyFile* ply_open_for_writing ( const char *  name,
const vector< string > &  elem_names,
int  file_type,
float *  version 
)

Definition at line 242 of file PLY_import_export.cpp.

References mrpt::system::os::fopen(), ply_write(), and PlyFile::version.

Referenced by mrpt::utils::PLY_Exporter::saveToPlyFile().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ ply_put_comment()

void ply_put_comment ( PlyFile plyfile,
const string comment 
)

Definition at line 588 of file PLY_import_export.cpp.

References PlyFile::comments.

Referenced by add_comment(), and mrpt::utils::PLY_Exporter::saveToPlyFile().

Here is the caller graph for this function:

◆ ply_put_element()

void ply_put_element ( PlyFile plyfile,
void elem_ptr 
)

◆ ply_put_element_setup()

void ply_put_element_setup ( PlyFile plyfile,
const string elem_name 
)

Definition at line 443 of file PLY_import_export.cpp.

References find_element(), and PlyFile::which_elem.

Referenced by mrpt::utils::PLY_Exporter::saveToPlyFile().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ ply_put_obj_info()

void ply_put_obj_info ( PlyFile plyfile,
const string obj_info 
)

Definition at line 602 of file PLY_import_export.cpp.

References PlyFile::obj_info.

Referenced by add_obj_info(), and mrpt::utils::PLY_Exporter::saveToPlyFile().

Here is the caller graph for this function:

◆ ply_read()

PlyFile* ply_read ( FILE *  fp,
vector< string > &  elem_names 
)

◆ ply_write()

PlyFile* ply_write ( FILE *  fp,
const vector< string > &  elem_names,
int  file_type 
)

Definition at line 204 of file PLY_import_export.cpp.

References PlyFile::elems, PlyFile::file_type, and PlyFile::version.

Referenced by ply_open_for_writing().

Here is the caller graph for this function:

◆ store_item()

void store_item ( char *  item,
int  type,
int  int_val,
unsigned int  uint_val,
double  double_val 
)

Definition at line 1662 of file PLY_import_export.cpp.

References PLY_CHAR, PLY_DOUBLE, PLY_FLOAT, PLY_INT, PLY_SHORT, PLY_UCHAR, PLY_UINT, and PLY_USHORT.

Referenced by ascii_get_element(), and binary_get_element().

Here is the caller graph for this function:

◆ write_ascii_item()

void write_ascii_item ( FILE *  fp,
int  int_val,
unsigned int  uint_val,
double  double_val,
int  type 
)

Definition at line 1406 of file PLY_import_export.cpp.

References mrpt::system::os::fprintf(), PLY_CHAR, PLY_DOUBLE, PLY_FLOAT, PLY_INT, PLY_SHORT, PLY_UCHAR, PLY_UINT, and PLY_USHORT.

Referenced by ply_put_element().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ write_binary_item()

void write_binary_item ( FILE *  fp,
int  int_val,
unsigned int  uint_val,
double  double_val,
int  type 
)

Definition at line 1349 of file PLY_import_export.cpp.

References PLY_CHAR, PLY_DOUBLE, PLY_FLOAT, PLY_INT, PLY_SHORT, PLY_UCHAR, PLY_UINT, and PLY_USHORT.

Referenced by ply_put_element().

Here is the caller graph for this function:

◆ write_scalar_type()

void write_scalar_type ( FILE *  fp,
int  code 
)

Definition at line 1222 of file PLY_import_export.cpp.

References mrpt::system::os::fprintf(), PLY_END_TYPE, and type_names.

Referenced by ply_header_complete().

Here is the call graph for this function:
Here is the caller graph for this function:

Variable Documentation

◆ DONT_STORE_PROP

const char DONT_STORE_PROP = 0

Definition at line 87 of file PLY_import_export.cpp.

Referenced by ply_read().

◆ face_props

const PlyProperty face_props[]
Initial value:
=
{
{"intensity", PLY_FLOAT, PLY_FLOAT, offsetof(TFace, intensity), 0, 0, 0,
0},
{"vertex_indices", PLY_INT, PLY_INT, offsetof(TFace, verts), 1, PLY_UCHAR,
PLY_UCHAR, offsetof(TFace, nverts)}}
#define offsetof(_structure, _field)
Definition: util.h:52

Definition at line 1845 of file PLY_import_export.cpp.

Referenced by mrpt::utils::PLY_Exporter::saveToPlyFile().

◆ NAMED_PROP

const char NAMED_PROP = 1

Definition at line 91 of file PLY_import_export.cpp.

Referenced by ply_describe_element(), and ply_describe_property().

◆ NO_OTHER_PROPS

const int NO_OTHER_PROPS = -1

Definition at line 85 of file PLY_import_export.cpp.

Referenced by ascii_get_element(), binary_get_element(), and ply_read().

◆ OTHER_PROP

const char OTHER_PROP = 0

Definition at line 90 of file PLY_import_export.cpp.

Referenced by ply_put_element().

◆ ply_type_size

const int ply_type_size[] = {0, 1, 2, 4, 1, 2, 4, 4, 8}

Definition at line 141 of file PLY_import_export.cpp.

Referenced by ascii_get_element(), binary_get_element(), and ply_put_element().

◆ STORE_PROP

const char STORE_PROP = 1

Definition at line 88 of file PLY_import_export.cpp.

Referenced by ply_get_property().

◆ type_names

const std::string type_names[]
Initial value:
= {
string("invalid"), string("char"), string("short"),
string("int"), string("uchar"), string("ushort"),
string("uint"), string("float"), string("double"),
}
GLsizei const GLchar ** string
Definition: glext.h:4101

Definition at line 136 of file PLY_import_export.cpp.

Referenced by get_prop_type(), and write_scalar_type().

◆ VAL_NOT_SET

const float VAL_NOT_SET = -1e10

Definition at line 1819 of file PLY_import_export.cpp.

Referenced by mrpt::utils::PLY_Importer::loadFromPlyFile().

◆ vert_props

const PlyProperty vert_props[]
Initial value:
=
{
{"x", PLY_FLOAT, PLY_FLOAT, offsetof(TVertex, x), 0, 0, 0, 0},
{"y", PLY_FLOAT, PLY_FLOAT, offsetof(TVertex, y), 0, 0, 0, 0},
{"z", PLY_FLOAT, PLY_FLOAT, offsetof(TVertex, z), 0, 0, 0, 0},
{"intensity", PLY_FLOAT, PLY_FLOAT, offsetof(TVertex, intensity), 0, 0, 0,
0}}
#define offsetof(_structure, _field)
Definition: util.h:52
GLdouble GLdouble z
Definition: glext.h:3872
GLenum GLint GLint y
Definition: glext.h:3538
GLenum GLint x
Definition: glext.h:3538

Definition at line 1828 of file PLY_import_export.cpp.

Referenced by mrpt::utils::PLY_Importer::loadFromPlyFile(), and mrpt::utils::PLY_Exporter::saveToPlyFile().




Page generated by Doxygen 1.8.14 for MRPT 1.9.9 Git: ae4571287 Thu Nov 23 00:06:53 2017 +0100 at dom oct 27 23:51:55 CET 2019