Skip to content

Commit 5955f49

Browse files
authored
Merge pull request #17 from JokerJohn/copilot/fix-reversed-input-order
[WIP] Fix reversed input order in getDiffRegResultWithCorrespondence
2 parents 902c230 + 112d8bb commit 5955f49

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

map_eval/src/map_eval.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1238,7 +1238,7 @@ void MapEval::calculateMetricsWithInitialMatrix() {
12381238
// Calculate the metrics (est_gt_results and gt_est_results)
12391239
getDiffRegResultWithCorrespondence(est_gt_results, est_gt_correspondence, *map_3d_, *gt_3d_,
12401240
*corresponding_cloud_est, *corresponding_cloud_gt);
1241-
getDiffRegResultWithCorrespondence(gt_est_results, gt_est_correspondence, *gt_3d_, *map_3d_,
1241+
getDiffRegResultWithCorrespondence(gt_est_results, gt_est_correspondence, *map_3d_, *gt_3d_,
12421242
*corresponding_cloud_est, *corresponding_cloud_gt);
12431243

12441244
// Calculate Chamfer Distance, F1 Score, and IoU (for initial matrix)

0 commit comments

Comments
 (0)