An open API service indexing awesome lists of open source software.

https://github.com/rsasaki0109/normaldistributiontransform2d

Python sample code of 2D NDT Scan Matching
https://github.com/rsasaki0109/normaldistributiontransform2d

lidar localization mapping ndt robotics slam

Last synced: 7 months ago
JSON representation

Python sample code of 2D NDT Scan Matching

Awesome Lists containing this project

README

          

# Python sample code of 2D NDT Scan Matching
This Python script demonstrates a 2D scan matching algorithm called Normal Distributions Transform (NDT) for aligning two point clouds.

## Usage

```bash
python script/normal_distributions_transform.py
```
.
## Results
The source points (red), target points (blue), and transformed source points (green).

```
True transform: [0.1 0.2 0.26179939]
Estimated transform: [0.11679415 0.28055845 0.25984399]
```

![Result](image/result.png)

This code is inspired by [PythonRobotics](https://github.com/AtsushiSakai/PythonRobotics).