How to remove an element from plydata['vertex'] #64
Unanswered
JACMoutinho
asked this question in
Q&A
Replies: 1 comment
-
The way I would approach this is to operate on the underlying NumPy array using NumPy methods (perhaps numpy.delete) and then reassign the result to the plydata.elements[0].data = numpy.delete(plydata.elements[0].data, [567890]) I expect that isn't particularly efficient, but in any case the general strategy illustrated here is what I would suggest: get the NumPy array using |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I was wondering if you could me with something, not really an issue:
I want to delete certain values from a point cloud using plyfile, like the example i have bellow where i want to delete the coordinate with index 567890 so that i can later produce a new ply file without that point.
How would ago about that?
Thank you for your help and have a wonderful weekend.
Beta Was this translation helpful? Give feedback.
All reactions