I have a point cloud with around 75 million points and I have already read the data files using laspy and they are stored in an array that looks like [x y z] where x values are in a column, y values are in a column and z values are in another column. I also have a derived 3x3 Rotation Matrix and a 3x1 Translation vector. When I am transforming the point cloud I am using the formula y=R@x+t however, this method is taking too long as it is being applied to all 75 million points
I was wondering if there is quicker way to apply the derived transformation parameters to my point cloud? Such as using any functions from laspy modules or other point cloud modules that make it easier to do this transformation?
I tried to individually apply the transformation to every point but it took a very long time. Are there any other ways to do this