Skip to content

A python file to visualize LiDAR pointcloud bin file using open3d

Notifications You must be signed in to change notification settings

KangHyunwoogi/pointcloud_visualization_open3d

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

A python file to visualize LiDAR pointcloud bin/pcd file using open3d

You just need to modify the bin/pcd file path and .reshape function to match the shape of the point cloud!

    Things to change to visualize .bin file!

    # TODO1. Write your bin file path
    bin_path = glob("PATH/TO/YOUR/FILE/XXX.bin")

    # TODO2. Write your bin file shape
    # If your bin file is (N, 4), you can use this code
    # But if your bin file is (N, 5), you should change this code with
    # points = (bin_pcd.reshape((-1, 5))[:, 0:3])
    points = bin_pcd.reshape((-1, 4))[:, 0:3]

IN PROGRESS...

  1. ADD origin coordinate
  2. ASSIGN colors to all point clouds based on semantic their labels

About

A python file to visualize LiDAR pointcloud bin file using open3d

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages