I have some vertices whose coordinates were stored as NumPy array.
xyz_np:
array([[ 7, 53, 31],
[ 61, 130, 116],
[ 89, 65, 120],
...,
[ 28, 72, 88],
[ 77, 65, 82],
[117, 90, 72]], dtype=int32)
I want to save these vertices as a point cloud file(such as .ply) and visualize it in Blender.
I don't have face information.
You can use Open3D to do this.
You can also visualize the point cloud using Open3D.