Fast 3D Line Segment Detection From Unorganized Point Cloud
Xiaohu Lu, Yahui Liu, Kai Li

TL;DR
This paper introduces a simple and efficient algorithm for detecting 3D line segments from unorganized point clouds by combining plane segmentation, 2D line detection, and re-projection, outperforming traditional methods in speed and robustness.
Contribution
The paper proposes a novel 3D line detection method that simplifies the process by integrating segmentation and 2D line detection, avoiding complex edge point extraction.
Findings
Demonstrates high efficiency and robustness on public datasets
Outperforms traditional methods in speed and accuracy
Provides publicly available C++ implementation
Abstract
This paper presents a very simple but efficient algorithm for 3D line segment detection from large scale unorganized point cloud. Unlike traditional methods which usually extract 3D edge points first and then link them to fit for 3D line segments, we propose a very simple 3D line segment detection algorithm based on point cloud segmentation and 2D line detection. Given the input unorganized point cloud, three steps are performed to detect 3D line segments. Firstly, the point cloud is segmented into 3D planes via region growing and region merging. Secondly, for each 3D plane, all the points belonging to it are projected onto the plane itself to form a 2D image, which is followed by 2D contour extraction and Least Square Fitting to get the 2D line segments. Those 2D line segments are then re-projected onto the 3D plane to get the corresponding 3D line segments. Finally, a post-processing…
Peer Reviews
No public reviews on file for this paper yet. If you reviewed it on a platform where reviews are public (OpenReview, ICLR, NeurIPS, ICML), you can paste yours below so the community can read it here.
Code & Models
Videos
No videos yet. Explain this paper in a talk, walkthrough, or lecture? Add one.
Taxonomy
TopicsImage and Object Detection Techniques · 3D Surveying and Cultural Heritage · Remote Sensing and LiDAR Applications
