You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In source code heuristic-sampling.cc for map-sparsification, I see the code of get score and cost for each landmark.
But what confuse me is that you add score and cost, as the picture bellow shows:
To my understanding, landmark with higher socre means better quality, and lower cost also means better quality, so should we use "score minus cost" as the final quality metric instead of "score plus cost" ?
And the code should be "double score_and_cost = landmark_scores[landmark_id] - landmark_costs[landmark_id];" , right ?
The text was updated successfully, but these errors were encountered:
In source code heuristic-sampling.cc for map-sparsification, I see the code of get score and cost for each landmark.
But what confuse me is that you add score and cost, as the picture bellow shows:
To my understanding, landmark with higher socre means better quality, and lower cost also means better quality, so should we use "score minus cost" as the final quality metric instead of "score plus cost" ?
And the code should be "double score_and_cost = landmark_scores[landmark_id] - landmark_costs[landmark_id];" , right ?
The text was updated successfully, but these errors were encountered: