SkillAgentSearch skills...

PyGroundSegmentation

Pure Python Libary of Ground Segmentation Algorithms

Install / Use

/learn @JonasHablitzel/PyGroundSegmentation

README

PyGroundSegmentation

This libary includes some ground segmentation algorithms rewritten in python. There are no external C or C++ dependencies only pure python (numpy).

Installation

pip install pygroundsegmentation

Included Algorithms

Example Usage

from pygroundsegmentation import GroundPlaneFitting

ground_estimator = GroundPlaneFitting() #Instantiate one of the Estimators

xyz_pointcloud = np.random.rand(1000,3) #Example Pointcloud
ground_idxs = ground_estimator.estimate_ground(xyz_pointcloud)
ground_pcl = xyz_pointcloud[ground_idxs]

View on GitHub
GitHub Stars12
CategoryDevelopment
Updated2mo ago
Forks1

Languages

Python

Security Score

95/100

Audited on Jan 29, 2026

No findings