All Projects → Amsterdam-AI-Team → 3D_Ground_Segmentation

Amsterdam-AI-Team / 3D_Ground_Segmentation

Licence: GPL-3.0 license
A ground segmentation algorithm for 3D point clouds based on the work described in “Fast segmentation of 3D point clouds: a paradigm on LIDAR data for Autonomous Vehicle Applications”, D. Zermas, I. Izzat and N. Papanikolopoulos, 2017. Distinguish between road and non-road points. Road surface extraction. Plane fit ground filter

Programming Languages

C++
36643 projects - #6 most used programming language
CMake
9771 projects

Projects that are alternatives of or similar to 3D Ground Segmentation

Hdl graph slam
3D LIDAR-based Graph SLAM
Stars: ✭ 945 (+1618.18%)
Mutual labels:  point-cloud, lidar
Lidar camera calibration
Light-weight camera LiDAR calibration package for ROS using OpenCV and PCL (PnP + LM optimization)
Stars: ✭ 133 (+141.82%)
Mutual labels:  point-cloud, lidar
Weakly Supervised 3d Object Detection
Weakly Supervised 3D Object Detection from Point Clouds (VS3D), ACM MM 2020
Stars: ✭ 61 (+10.91%)
Mutual labels:  point-cloud, lidar
Superpoint graph
Large-scale Point Cloud Semantic Segmentation with Superpoint Graphs
Stars: ✭ 533 (+869.09%)
Mutual labels:  point-cloud, lidar
Displaz.jl
Julia bindings for the displaz lidar viewer
Stars: ✭ 16 (-70.91%)
Mutual labels:  point-cloud, lidar
Depth clustering
🚕 Fast and robust clustering of point clouds generated with a Velodyne sensor.
Stars: ✭ 657 (+1094.55%)
Mutual labels:  point-cloud, lidar
Awesome Robotic Tooling
Tooling for professional robotic development in C++ and Python with a touch of ROS, autonomous driving and aerospace.
Stars: ✭ 1,876 (+3310.91%)
Mutual labels:  point-cloud, lidar
BtcDet
Behind the Curtain: Learning Occluded Shapes for 3D Object Detection
Stars: ✭ 104 (+89.09%)
Mutual labels:  point-cloud, lidar
Displaz
A hackable lidar viewer
Stars: ✭ 177 (+221.82%)
Mutual labels:  point-cloud, lidar
Vision3d
Research platform for 3D object detection in PyTorch.
Stars: ✭ 177 (+221.82%)
Mutual labels:  point-cloud, lidar
Interactive slam
Interactive Map Correction for 3D Graph SLAM
Stars: ✭ 372 (+576.36%)
Mutual labels:  point-cloud, lidar
Pclpy
Python bindings for the Point Cloud Library (PCL)
Stars: ✭ 212 (+285.45%)
Mutual labels:  point-cloud, lidar
Lidr
R package for airborne LiDAR data manipulation and visualisation for forestry application
Stars: ✭ 310 (+463.64%)
Mutual labels:  point-cloud, lidar
Lidar camera calibration
ROS package to find a rigid-body transformation between a LiDAR and a camera for "LiDAR-Camera Calibration using 3D-3D Point correspondences"
Stars: ✭ 734 (+1234.55%)
Mutual labels:  point-cloud, lidar
3d cnn tensorflow
KITTI data processing and 3D CNN for Vehicle Detection
Stars: ✭ 266 (+383.64%)
Mutual labels:  point-cloud, lidar
Laser Camera Calibration Toolbox
A Laser-Camera Calibration Toolbox extending from that at http://www.cs.cmu.edu/~ranjith/lcct.html
Stars: ✭ 99 (+80%)
Mutual labels:  point-cloud, lidar
urban road filter
Real-time LIDAR-based Urban Road and Sidewalk detection for Autonomous Vehicles 🚗
Stars: ✭ 134 (+143.64%)
Mutual labels:  point-cloud, lidar
awesome-lidar
😎 Awesome LIDAR list. The list includes LIDAR manufacturers, datasets, point cloud-processing algorithms, point cloud frameworks and simulators.
Stars: ✭ 217 (+294.55%)
Mutual labels:  point-cloud, lidar
Extrinsic lidar camera calibration
This is a package for extrinsic calibration between a 3D LiDAR and a camera, described in paper: Improvements to Target-Based 3D LiDAR to Camera Calibration. This package is used for Cassie Blue's 3D LiDAR semantic mapping and automation.
Stars: ✭ 149 (+170.91%)
Mutual labels:  point-cloud, lidar
Liblas
C++ library and programs for reading and writing ASPRS LAS format with LiDAR data
Stars: ✭ 211 (+283.64%)
Mutual labels:  point-cloud, lidar

Fast Ground Segmentation of 3D Point Clouds

Ground plane fitting algorithm for fast ground removal in LAS/LAZ Point Clouds. A preprocessing step, where ground points removal significantly reduces the number of points involved in proceeding computations.

Pseudocode

This project is based on the pseudocode of the ground plane fitting algorithm proposed in the work of Zermas et al. The pseudocode is described below.

P: point cloud
num_iter_: number of iterations
num_lpr_: number of points used to estimate the LPR
th_seeds_: threshold points to be considered initial seeds
th_dist_: threshold distance of the plane

mainLoop(P):
    P_ground = extractInitialSeeds(P)
    for i in 1 : num_iter_:
        model = estimatePlane(P_ground);
        clear(P_ground, P_notground)
        for point p in PointCloud P:
            if model(p) < th_dist_:
                add p to P_groundelse
                add p to P_notground;
    return P_ground, P_notground

extractInitialSeeds(P):
    P_sorted = sortOnHeight(P)
    LPR_height = Average(P_sorted(1 : num_lpr_));
    clear(P_seeds)
    for i in 1 : P_sorted.size:
        if P_sorted[i].z < LPR_height + th_seeds_:
            add p_sorted[i] to P_seeds
    return P_seeds

Prerequisites

  • Install LAStools:

    wget  http://lastools.github.io/download/LAStools.zip
    unzip LAStools.zip
    cd LAStools; mv LASlib/src/LASlib-config.cmake LASlib/src/laslib-config.cmake
    mkdir build; cd build
    cmake ..
    sudo make install
    
  • Install PCL:

    sudo apt install libpcl-dev
    

Installation instructions

  • Download the project.

    git clone https://github.com/Amsterdam-AI-Team/3D_Ground_Segmentation.git
    
  • Build the project as follows.

    mkdir build  
    cd build
    cmake ..
    make
    
  • Run the project.

    cd build
    ./ground_plane_fit
    

Example

Original Point Cloud with RGB notground points ground points
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].