Skip to content

Commit

Permalink
Merge pull request #669 from borglab/robust-shonan-wrapper-update
Browse files Browse the repository at this point in the history
add robust shonan updates to python wrapper
  • Loading branch information
dellaert authored Jan 14, 2021
2 parents 7b1f8a0 + a6c67fb commit 0353b0e
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions gtsam/gtsam.i
Original file line number Diff line number Diff line change
Expand Up @@ -2933,9 +2933,14 @@ class ShonanAveragingParameters2 {
void setAnchorWeight(double value);
double getAnchorWeight() const;
void setKarcherWeight(double value);
double getKarcherWeight();
double getKarcherWeight() const;
void setGaugesWeight(double value);
double getGaugesWeight();
double getGaugesWeight() const;
void setUseHuber(bool value);
bool getUseHuber() const;
void setCertifyOptimality(bool value);
bool getCertifyOptimality() const;
void print() const;
};

class ShonanAveragingParameters3 {
Expand All @@ -2949,9 +2954,14 @@ class ShonanAveragingParameters3 {
void setAnchorWeight(double value);
double getAnchorWeight() const;
void setKarcherWeight(double value);
double getKarcherWeight();
double getKarcherWeight() const;
void setGaugesWeight(double value);
double getGaugesWeight();
double getGaugesWeight() const;
void setUseHuber(bool value);
bool getUseHuber() const;
void setCertifyOptimality(bool value);
bool getCertifyOptimality() const;
void print() const;
};

class ShonanAveraging2 {
Expand Down

0 comments on commit 0353b0e

Please sign in to comment.