add uint64 and int64 to data type - #34
Conversation
|
Hi, @VertexC. Have you encountered other PLY files that contain 64-bit integer properties? I haven't personally seen this, and they are not part of the standard. I hesitate to implement nonstandard extensions to the PLY format unless they are already common and widely supported. (I was even on the fence about For the use case in your example, a common workaround is to subtract an offset from all the timestamps (such as the first timestamp), and put the offset in a special header comment. |
|
Hi @dranjan, I see your point. Ply format doesn't include int64 as its standard, but it is a fairly easy extension as numpy supports that. As you said, add the offset in the comment and then remove is fairly annoying, I'll keep that extension for my own usage. |
Tested as following.