mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-13 13:48:10 -05:00
start implementation of ICP
This commit is contained in:
19
SLAM/iterative_closest_point/iterative_closest_point.py
Normal file
19
SLAM/iterative_closest_point/iterative_closest_point.py
Normal file
@@ -0,0 +1,19 @@
|
||||
"""
|
||||
|
||||
Iterative Closet Point (ICP) SLAM example
|
||||
|
||||
author: Atsushi Sakai (@Atsushi_twi)
|
||||
|
||||
"""
|
||||
|
||||
# import math
|
||||
# import numpy as np
|
||||
# import matplotlib.pyplot as plt
|
||||
|
||||
|
||||
def main():
|
||||
print(__file__ + " start!!")
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
Reference in New Issue
Block a user