去掉feature quality lowest,添加trans_orthophoto.py测试代码

This commit is contained in:
weixin_46229132 2025-05-09 11:30:10 +08:00
parent 4dabfa0545
commit 557f2ba321
2 changed files with 8 additions and 4 deletions

View File

@ -38,3 +38,7 @@ class TransOrthophoto:
)
self.logger.info(f"文件已成功重投影")
if __name__ == "__main__":
trans = TransOrthophoto()
trans.trans_to_epsg4326(r"G:\ODM_output\test\orthophoto.tif", r"G:\ODM_output\test\orthophoto_epsg4326.tif")

View File

@ -61,10 +61,10 @@ class ODMProcessMonitor:
f"--dsm "
f"--dtm "
)
if current_try == 1:
command += (
f"--feature-quality low "
)
# if current_try == 1:
# command += (
# f"--feature-quality low "
# )
command += "--rerun-all"