Skip to content

Commit

Permalink
Use --image_list / --feature_path arguments.
Browse files Browse the repository at this point in the history
  • Loading branch information
gu6225ha-s committed Feb 21, 2024
1 parent e3e953f commit e43ce1b
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 e43ce1b

Please sign in to comment.