From e43ce1b9ce9bb3da5ebe9d69ea9202337728ef32 Mon Sep 17 00:00:00 2001 From: Gustav Hanning Date: Wed, 21 Feb 2024 17:39:53 +0100 Subject: [PATCH] Use --image_list / --feature_path arguments. --- hloc/extract_features.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/hloc/extract_features.py b/hloc/extract_features.py index 53130ab5..cf100c39 100644 --- a/hloc/extract_features.py +++ b/hloc/extract_features.py @@ -307,4 +307,11 @@ def main( parser.add_argument("--image_list", type=Path) parser.add_argument("--feature_path", type=Path) args = parser.parse_args() - main(confs[args.conf], args.image_dir, args.export_dir, args.as_half) + main( + confs[args.conf], + args.image_dir, + args.export_dir, + args.as_half, + args.image_list, + args.feature_path, + )