Skip to content

Commit

Permalink
Increase weight for prior term
Browse files Browse the repository at this point in the history
  • Loading branch information
yuluntian committed Feb 10, 2023
1 parent 3f19517 commit 0af66a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/PoseGraph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ namespace DPGO {
PoseGraph::PoseGraph(unsigned int id, unsigned int r, unsigned int d)
: id_(id), r_(r), d_(d), n_(0),
use_inactive_neighbors_(false),
prior_kappa_(10000),
prior_tau_(100) {
prior_kappa_(1000000),
prior_tau_(10000) {
CHECK(r >= d);
empty();
}
Expand Down

0 comments on commit 0af66a3

Please sign in to comment.