start implementation of ICP

This commit is contained in:
Atsushi Sakai
2018-02-20 09:36:42 -08:00
parent 3d49cd1a4d
commit 273728acff

View 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()