|
libpointmatcher
1.3.1
|
Interface for all PLY elements. More...
#include <IO.h>
Public Member Functions | |
| PLYElement (const std::string &name, const unsigned num, const unsigned offset) | |
| PLY Element constructor. More... | |
| bool | operator== (const PLYElement &other) const |
| comparison operator for elements | |
Public Attributes | |
| std::string | name |
| name identifying the PLY element | |
| unsigned | num |
| number of occurences of the element | |
| unsigned | total_props |
| total number of properties in PLY element | |
| unsigned | offset |
| line at which data starts | |
| PLYProperties | properties |
| all properties found in the header | |
| unsigned | nbFeatures |
| number of valid features found in the header | |
| unsigned | nbDescriptors |
| number of valid descriptors found in the header | |
Interface for all PLY elements.
|
inline |
PLY Element constructor.
| name | name of the ply element (case-sensitive) |
| num | number of times the element appears in the file |
| offset | if there are several elements, the line offset at which this element begins. Note that, as of writing, only one (vertex) element is supported. |
This object holds information about a PLY element contained in the file. It is filled out when reading the header and used when parsing the data.
1.8.15