FCGF icon indicating copy to clipboard operation
FCGF copied to clipboard

invalid filename format when running testing pipeline

Open sus17 opened this issue 3 years ago • 0 comments

In your latest commit, there is a bug in scripts/benchmark_3dmatch.py, line 175, saying:

  • traj = read_trajectory(os.path.join(source_path, set_name + "_gt.log"))

However, there isn't any groundtruth log in testing dataset whose name ends with "_gt.log". After checking the testing dataset filename format, the code above will work if modified like this:

  • traj = read_trajectory(os.path.join(source_path, set_name + "-evaluation/gt.log"))

Maybe the testing dataset structure has been changed. Could you inspect it if possible?

sus17 avatar Oct 02 '20 11:10 sus17