diff --git a/SLAM/iterative_closest_point/iterative_closest_point.py b/SLAM/iterative_closest_point/iterative_closest_point.py new file mode 100644 index 00000000..cef64cde --- /dev/null +++ b/SLAM/iterative_closest_point/iterative_closest_point.py @@ -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()