Hi all, seems I am generating quite high amount of questions lately, but this is one more I couldn’t get past in several hours of trying to go through docs. I managed to make a simpler MRE from it:
I have self.point_cloud_actor and I want to use vtkBoxWidget to clip the point cloud. I am just trying to alter the view of the point cloud, without altering the actor itself. It seems from docs I need to use vtkClipPolyData but I do not understand in which way. I tried mixes of pretty much anything that came into my mind, but the results are usually that: a) bounding box have 0 effect at all, b) nothing is visible at all (as in example I have here), c) only a single side of bounding box works (this was when I tried not with clipper but with directly adding clipping planes to actor).
I cannot seem to find any example of doing this, and I am too new to VTK to find my way in docs, apparently. Could anyone point me to correct direction? Thank you!
I managed to make a callback that seems working, but it is so painfully slow that it is pretty much unusable and I cannot test it properly as app just freezes most of the time. It seems that this is how the clipper is supposed to be used, but how to make it usable for some bigger point clouds?
Hi @sapvi, Some of the performance overhead could be because you’re glyphing the points as well as clipping on the CPU. Try removing the VertexGlyphFilter and instead use vtkProperty::SetRenderPointsAsSpheres to make points appear as spheres.
Similarly, the clip can happen on the GPU via vtkAbstractMapper::SetClippingPlanes. This is unless, you want to use the clipped data for further processing.