From 05e8576332b7f9e63d1bfb2543d1428006240d27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BE=99=E6=BE=B3?= Date: Thu, 19 Dec 2024 17:19:39 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0ignore=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 5 +++++ tools/odm_pip_time.py | 2 +- tools/show_GPS.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3eee42b --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +# 忽略所有__pycache__目录 +**/__pycache__/ +*.pyc +*.pyo +*.pyd \ No newline at end of file diff --git a/tools/odm_pip_time.py b/tools/odm_pip_time.py index 5ccab66..2dba550 100644 --- a/tools/odm_pip_time.py +++ b/tools/odm_pip_time.py @@ -7,7 +7,7 @@ def parse_args(): parser = argparse.ArgumentParser(description="ODM log time") parser.add_argument( - "--path", default=r"E:\datasets\UAV\1815\project\log.json") + "--path", default=r"E:\datasets\UAV\134\project\log.json") args = parser.parse_args() return args diff --git a/tools/show_GPS.py b/tools/show_GPS.py index 6b98da3..e486b90 100644 --- a/tools/show_GPS.py +++ b/tools/show_GPS.py @@ -5,7 +5,7 @@ sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) import matplotlib.pyplot as plt from preprocess.gps_extractor import GPSExtractor -DATASET = r'E:\湖南省第二测绘院\11-06-项目移交文件(王辉给)\无人机二三维节点扩容生产影像\影像数据\1009' +DATASET = r'E:\datasets\UAV\502\project\images' if __name__ == '__main__': extractor = GPSExtractor(DATASET)