Skip to content

Commit

Permalink
Add missing CLI arguments to extract_features (#371)
Browse files Browse the repository at this point in the history
  • Loading branch information
gu6225ha-s authored Nov 3, 2024
1 parent defd3ab commit 3c50d5b
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion hloc/extract_features.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)

0 comments on commit 3c50d5b

Please sign in to comment.