From 8f23d00e4142a7df44e545266ead673c6faa2c15 Mon Sep 17 00:00:00 2001 From: christopher schicho Date: Sun, 1 Dec 2024 17:46:17 +0100 Subject: [PATCH] fix gui --- src/deep_image_matching/parser.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/deep_image_matching/parser.py b/src/deep_image_matching/parser.py index 4a3bf55..44ba6ef 100644 --- a/src/deep_image_matching/parser.py +++ b/src/deep_image_matching/parser.py @@ -142,7 +142,6 @@ def parse_cli() -> dict: "--camera_options", help="Path to camera options yaml file, e.g. config/cameras.yaml", default="./config/cameras.yaml", - required=True, ) args = parser.parse_args() @@ -156,7 +155,6 @@ def parse_cli() -> dict: args.outs = gui_out["out_dir"] args.matcher = gui_out["matcher"] args.extractor = gui_out["extractor"] - args.config_file = gui_out["config_file"] args.strategy = gui_out["strategy"] args.pairs = gui_out["pair_file"] args.overlap = gui_out["image_overlap"]