Voxelgrid from voxel + transformation ? #3902
Unanswered
StephaneKazmierczak
asked this question in
Q&A
Replies: 1 comment 2 replies
-
Hi @StephaneKazmierczak are you looking to transform the entire voxel grid? What does the NumPy array represent? from open3d.geometry import VoxelGrid, PointCloud
pcd = PointCloud()
pcd.points = o3d.utility.Vector3dVector(xyz) # xyz is a (N,3) numpy array
vg = VoxelGrid.create_from_point_cloud(pcd, voxel_size)
vg.transform(transform_matrix_4x4) |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, I am looking to apply transformations to a voxel from a numpy array.
Ex :
Is there an object that would take the above representation and then allow for transformation (rotation/flip). I have looked at the documentation but it doesn;t seems the voxelgrid works like that.
Beta Was this translation helpful? Give feedback.
All reactions