Skip to content

a simple C++ library to import/export Stanford PLY data.

License

Notifications You must be signed in to change notification settings

MarcoMatteoBassa/plycpp

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

plycpp: a simple C++ library to import/export Polygon File Format data.

This library intends to provide an easy to use solution to manipulate PLY files in C++.

If you are looking for a more complete alternative and are not interested by C++ syntactic sugar, you may want to have a look at:

Features

  • Easy to install: Add "hdr/plycpp.h" and "src/plycpp.cpp" to your project and you are ready to go (or use CMake and a Git submodule if you prefer).
  • Load PLY files in ASCII and Binary mode.
  • Save PLY data in ASCII and Binary mode.
  • Handle arbitrary elements and properties.
  • Safety mechanisms to check data type in Debug mode.
  • ParsingException triggered if anything goes wrong.

Syntax example

See src/example.cpp for a full example.

Current limitations

  • Property lists have to contain exactly 3 values per element, and be indexed by a "uchar" type. For typical use, this means that only triangular meshes are supported.
  • Decoding of binary files encoded with an endianness different of the one of the current architecture is not yet implemented.

Compilers supported

This code should be supported by any C++11 compliant compiler. Tested with Visual Studio 2013 and Visual Studio 2017.

About

a simple C++ library to import/export Stanford PLY data.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 95.6%
  • CMake 4.4%