How do i mirror a point cloud?

I want to vertically mirror a pointcloud before the rendering network, so everything has to be made in TOPs, but i have little to no clue on how to do it

Hi @Sator_Arts,

in TOPs you can use a Threshold TOP to create a mask that would “select” all points greater or smaller than a certain value. The mask you can multiply with the original image and transform using a Point Transform TOP. Finally use a Layout TOP with the Scale Resolution parameter turned on to merge the non-transformed with the transformed data.

You can also make use of POPs for this. Here use the Group POP to select the points by specifying an attribute like P.x for example. Next use the Delete POP to remove the points not in the created group and finally transform the remaining points and merge the transformed and non-transformed points.

Hope this makes sense
Markus

1 Like

Thank you so much @snaut
Thank you as well for the POPs guide, youre a savior!