Skip to content

Commit

Permalink
changing to macro EssenstialMatrixfactor4
Browse files Browse the repository at this point in the history
  • Loading branch information
akshay-krishnan committed Jun 21, 2021
1 parent e3b6c83 commit a69f9e5
Showing 1 changed file with 6 additions and 18 deletions.
24 changes: 6 additions & 18 deletions gtsam/slam/tests/testEssentialMatrixFactor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#include <gtsam/nonlinear/LevenbergMarquardtOptimizer.h>
#include <gtsam/nonlinear/NonlinearFactorGraph.h>
#include <gtsam/nonlinear/expressionTesting.h>
#include <gtsam/nonlinear/factorTesting.h>
#include <gtsam/slam/EssentialMatrixFactor.h>
#include <gtsam/slam/dataset.h>

Expand Down Expand Up @@ -359,26 +360,13 @@ TEST(EssentialMatrixFactor4, factor) {
// Check evaluation
Vector1 expected;
expected << 0;
Matrix HEactual;
Matrix HKactual;
Vector actual = factor.evaluateError(trueE, trueK, HEactual, HKactual);
Vector actual = factor.evaluateError(trueE, trueK);
EXPECT(assert_equal(expected, actual, 1e-7));

// Use numerical derivatives to calculate the expected Jacobian
Matrix HEexpected;
Matrix HKexpected;
typedef Eigen::Matrix<double, 1, 1> Vector1;
boost::function<Vector(const EssentialMatrix &, const Cal3_S2 &)> f =
boost::bind(&EssentialMatrixFactor4<Cal3_S2>::evaluateError, factor, _1,
_2, boost::none, boost::none);
HEexpected = numericalDerivative21<Vector1, EssentialMatrix, Cal3_S2>(
f, trueE, trueK);
HKexpected = numericalDerivative22<Vector1, EssentialMatrix, Cal3_S2>(
f, trueE, trueK);

// Verify the Jacobian is correct
EXPECT(assert_equal(HEexpected, HEactual, 1e-8));
EXPECT(assert_equal(HKexpected, HKactual, 1e-8));
Values truth;
truth.insert(keyE, trueE);
truth.insert(keyK, trueK);
EXPECT_CORRECT_FACTOR_JACOBIANS(factor, truth, 1e-6, 1e-7);
}
}

Expand Down

0 comments on commit a69f9e5

Please sign in to comment.