PLY Utils
Utils for interacting with PLY files
Header
Writes out PLY header information
ply-utils -i .\out.ply header --json --out header.jsonProperties
Remove Properties
Below is an example on how you could remove the color components of a ply file
ply-utils -i in.ply property remove red green blueAdd Properties
ply-utils -i in.ply property add red char green char blue charAnalyze Properties
Builds summaries of data pertaining to the properties within the PLY file
# Analyze all properties in the file
ply-utils -i in.ply property analyze
# Analyze only red, green, and blue
ply-utils -i in.ply property analyze red green blueLast updated