About 301,000 results
Open links in new tab
  1. python 3.x - How to plot 3D point clouds from an npy file ... - Stack ...

    Jun 17, 2020 · 3 I have a few Numpy binary files created by LIDAR readings containing 3D point clouds. I want to be able to plot a top-down (orthogonal) view for every point cloud by reading them from a …

  2. Point Cloud transformation using Python - Stack Overflow

    Oct 30, 2022 · 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 …

  3. Python - Display 3D Point Cloud - Stack Overflow

    Jun 21, 2018 · Try pptk (point processing toolkit). The package has a 3-d point cloud viewer that directly takes a 3-column numpy array as input, and is able to interactively visualize 10-100 million points.

  4. I want to generate a mesh from a point cloud in Python

    Feb 27, 2019 · 5 If your points are "are in total disorder", and if you want to generate a mesh, then you need some interpolation from the cloud of points to the somehow structured grid points of the mesh.. …

  5. python - How to Generate a Point Cloud from an Image with Intrinsic ...

    Dec 27, 2024 · 1. An image (height x width) 2. Intrinsic camera parameters (camera matrix). 3. A depth map of the image (height x width) The depth map does not provide the real-world z-coordinate of …

  6. python - How to visualize multiple point-cloud files as video using ...

    Feb 16, 2024 · The code shows the point cloud and the bounding boxes for 1.5s, and then close the current window and show the next files in a new window. I am wondering how can I modify my code …

  7. python - Filtering pointcloud - Stack Overflow

    Mar 10, 2021 · One option could be to use PyCuda I think. But right now what I did was to execute the logic of trim_cloud in c++ in the script that makes the pointcloud acquisition. Got a 45% reduction in …

  8. python - How to project a point cloud to a corresponding 2D image …

    Dec 14, 2023 · I'm trying to project a point cloud onto a 2d high resolution image, but having some problems. I'm currently using the function cv2.projectPoints(point,R,T,camera_matrix, dist_coeffs) …

  9. python - How do I convert a 3D point cloud (.ply) into a mesh (with ...

    Jul 10, 2019 · I have a 3-D point cloud file with 1 million points that I need to convert into a mesh file in trimesh. The ultimate goal here is to take a point cloud and determine if that point cloud is convex or …

  10. python - Open3D - Crop Pointcloud with Polygon Volume - Stack …

    This post helped me get decently far to crop a point cloud within the bounds of a cuboid. I also consistently ran into geometry::PointCloud with 0 points using vol.crop_point_cloud(pcd) and couldn't …