Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dakshaau/icp
3D Point Cloud registration using ICP
https://github.com/dakshaau/icp
icp point-cloud python-3
Last synced: 3 months ago
JSON representation
3D Point Cloud registration using ICP
- Host: GitHub
- URL: https://github.com/dakshaau/icp
- Owner: dakshaau
- Created: 2017-04-17T20:42:16.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-08-31T02:46:08.000Z (over 5 years ago)
- Last Synced: 2023-02-27T20:58:00.183Z (almost 2 years ago)
- Topics: icp, point-cloud, python-3
- Language: Python
- Homepage:
- Size: 71.9 MB
- Stars: 38
- Watchers: 2
- Forks: 12
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Point Cloud Registration
**Language:** Python 3.6
### Decription:
Register two 3D point clouds of the same area using Iterative Closest Point, or ICP.
Tried to implement [Go-ICP](http://iitlab.bit.edu.cn/mcislab/~yangjiaolong/go-icp/), but the results were not good, meybe due to incorrect implementation. The implementation is still in the code, but is not called upon. The code calls ICP by default.
The code in `read_data.py` is used to load text data into numpy arrays and create pickle dumps on the first run, to save time when called later.
Error function used is **L2 Error**.
### To Run:
```Batchfile
python trial.py
```