python-plyfile
python-plyfile copied to clipboard
NumPy-based text/binary PLY file reader/writer for Python
Hi, authors: the plyfile can read the mesh ply files, and how to convert the binary_little_endian to ascii? Thanks! Yours, sincerely.
The plyfile module is missing the `__version__` field. This can be added by including a line ``` __version__ = '0.4' ``` in the file `plyfile.py`. If the version needs to...
It seems it should be possible to run our unit tests through GitHub actions, and Travis CI is no longer a viable solution.
I have some code that does what I need it to do, but when testing with a larger sample of data (about 1.5GB) it seems to hang on reading the...
Python 2 is officially unsupported now. This should also allow us to simplify the code a little bit.
read gives error: /usr/local/bin/python3.7 "/Users/roger/Documents/Projects/3D Faces/E4/test-ply-1.py" Traceback (most recent call last): File "/Users/roger/Documents/Projects/3D Faces/E4/test-ply-1.py", line 43, in rd = PlyData.read('Beethoven.ply' ) File "/usr/local/lib/python3.7/site-packages/plyfile.py", line 392, in read data = PlyData._parse_header(stream)...
Hi @dranjan, thank you for this great work. Without wanting to start a flamewar, I wonder if you though about the licence. IMHO a library is often best suited to...
NumPy 2.0 was just released: https://pypi.org/project/numpy/ I don't anticipate major issues, but we should make sure everything still works and also update the test matrix.
Hi, @chpatrick wrote this and we find it super useful for being able to write PLY files in-place with `mmap`. We already use this for a year in production and...
Hi, i am using PlyFile to load and rotate a scene, the output position is indeed correct but the orientation of the point clouds are not. Using this code: ```python...