Skip to content

Commit

Permalink
Add unit test for Sim3 Jacobian
Browse files Browse the repository at this point in the history
  • Loading branch information
RainerKuemmerle committed Apr 10, 2020
1 parent fdf6965 commit 6759465
Show file tree
Hide file tree
Showing 5 changed files with 98 additions and 1 deletion.
2 changes: 2 additions & 0 deletions g2o/types/sim3/types_seven_dof_expmap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ bool EdgeSim3::read(std::istream& is)
return os.good();
}

#if G2O_SIM3_JACOBIAN
void EdgeSim3::linearizeOplus() {
VertexSim3Expmap *v1 = static_cast<VertexSim3Expmap *>(_vertices[0]);
VertexSim3Expmap *v2 = static_cast<VertexSim3Expmap *>(_vertices[1]);
Expand Down Expand Up @@ -181,6 +182,7 @@ void EdgeSim3::linearizeOplus() {

_jacobianOplusXj = -(I7 + 0.5 * jacobi_j);
}
#endif

/**Sim3ProjectXYZ*/

Expand Down
2 changes: 2 additions & 0 deletions g2o/types/sim3/types_seven_dof_expmap.h
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,9 @@ class G2O_TYPES_SIM3_API VertexSim3Expmap : public BaseVertex<7, Sim3>
else
v1->setEstimate(measurement().inverse()*v2->estimate());
}
#if G2O_SIM3_JACOBIAN
virtual void linearizeOplus();
#endif
};


Expand Down
3 changes: 2 additions & 1 deletion unit_test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ macro(create_test target)
add_test (NAME ${target} COMMAND $<TARGET_FILE:${target}>)
endmacro(create_test)

ADD_SUBDIRECTORY(general)
ADD_SUBDIRECTORY(stuff)
ADD_SUBDIRECTORY(slam2d)
ADD_SUBDIRECTORY(slam3d)
ADD_SUBDIRECTORY(general)
ADD_SUBDIRECTORY(sim3)
5 changes: 5 additions & 0 deletions unit_test/sim3/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
add_executable(unittest_sim3
jacobians_sim3.cpp
)
target_link_libraries(unittest_sim3 types_sim3)
create_test(unittest_sim3)
87 changes: 87 additions & 0 deletions unit_test/sim3/jacobians_sim3.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
// g2o - General Graph Optimization
// Copyright (C) 2011 R. Kuemmerle, G. Grisetti, W. Burgard
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
// IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
// TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
// PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
// TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#include "gtest/gtest.h"

#include "unit_test/test_helper/evaluate_jacobian.h"

#include "g2o/core/jacobian_workspace.h"
#include "g2o/types/sim3/types_seven_dof_expmap.h"

#include "g2o/core/optimizable_graph.h"

using namespace std;
using namespace g2o;
using namespace g2o::internal;

namespace {

static Eigen::Isometry3d randomIsometry3d()
{
Eigen::Vector3d rotAxisAngle = Eigen::Vector3d::Random();
rotAxisAngle += Eigen::Vector3d::Random();
Eigen::AngleAxisd rotation(rotAxisAngle.norm(), rotAxisAngle.normalized());
Eigen::Isometry3d result = (Eigen::Isometry3d)rotation.toRotationMatrix();
result.translation() = Eigen::Vector3d::Random();
return result;
}

static Sim3 randomSim3()
{
Eigen::Isometry3d se3 = randomIsometry3d();
Eigen::Matrix3d r = se3.rotation();
Eigen::Vector3d t = se3.translation();
return Sim3(r, t, 1.0);
}

} // end anonymous namespace

TEST(Sim3, EdgeSim3Jacobian)
{
VertexSim3Expmap v1;
v1.setId(0);

VertexSim3Expmap v2;
v2.setId(1);

EdgeSim3 e;
e.setVertex(0, &v1);
e.setVertex(1, &v2);
e.setInformation(EdgeSim3::InformationType::Identity());

JacobianWorkspace jacobianWorkspace;
JacobianWorkspace numericJacobianWorkspace;
numericJacobianWorkspace.updateSize(&e);
numericJacobianWorkspace.allocate();

for (int k = 0; k < 1; ++k) {
v1.setEstimate(randomSim3());
v2.setEstimate(randomSim3());
e.setMeasurement(randomSim3());

evaluateJacobian(e, jacobianWorkspace, numericJacobianWorkspace);
}
}

0 comments on commit 6759465

Please sign in to comment.