I've applied a rectangular prism filter to my point cloud data, and would like to access the data contained within the prism. This seems like it should be simple, and probably is.
I have created the clipper and adjusted it
p3d = view_ply_file('data/my_file.ply') #returns mayavi.mlab.points3d() instance
clip = mlab.pipeline.data_set_clipper(p3d)
#... manual interactive GUI adjustment
clip.outputs[0].points #? is empty.
How do I retrieve the contained points? I'm currently looking into the underlying vtk API, but perhaps someone with VTK or mayavi experience has some insight.
After finding the VTK docs much more useful than the mayavi docs on the matter, I came up with a way to extract the corners from the clipping prism. A point-in-polygon test is still needed. Update: figured the rest out. There are likely many ways to optimize - this is the naivest solution. Hopefully someone will benefit from this.