9 #include <gtest/gtest.h>
11 #include <mrpt/poses/CPose3D.h>
13 #if PACKAGE_ROS_VERSION == 1
14 #include <mrpt/ros1bridge/pose.h>
15 namespace m2r = mrpt::ros1bridge;
17 #include <mrpt/ros2bridge/pose.h>
18 namespace m2r = mrpt::ros2bridge;
21 TEST(PoseCovOps, composition) {
29 a.pose.position.x = -0.333330;
30 a.pose.position.y = 0;
31 a.pose.position.z = 0.100000;
33 a.pose.orientation.x = 0.707107;
34 a.pose.orientation.y = 0;
35 a.pose.orientation.z = 0.707107;
36 a.pose.orientation.w = -0.000005;
39 b.pose.position.x = 1.435644;
40 b.pose.position.y = 0;
41 b.pose.position.z = 0;
42 b.pose.orientation.x = 1.000000;
43 b.pose.orientation.y = 0;
44 b.pose.orientation.z = 0;
45 b.pose.orientation.w = 0;
50 const mrpt::poses::CPose3D a_mrpt = m2r::fromROS(a.pose);
51 const mrpt::poses::CPose3D b_mrpt = m2r::fromROS(b.pose);
52 const mrpt::poses::CPose3D ab_mrpt = m2r::fromROS(ab.pose);
54 std::cout <<
"a: " << a_mrpt.asString() <<
"\nRot:\n"
55 << a_mrpt.getRotationMatrix() <<
"\n";
56 std::cout <<
"b: " << b_mrpt.asString() <<
"\nRot:\n"
57 << b_mrpt.getRotationMatrix() <<
"\n";
58 std::cout <<
"a+b: " << ab_mrpt.asString() <<
"\nRot:\n"
59 << ab_mrpt.getRotationMatrix() <<
"\n";
62 std::cout <<
"a: " << a <<
"\n";
63 std::cout <<
"b: " << b <<
"\n";
64 std::cout <<
"a(+)b: " << ab <<
"\n";
67 EXPECT_NEAR(ab.pose.position.x, -0.3333333, 0.01);
70 TEST(PoseCovOps, compositionTF2) {
75 a.pose.position.x = -0.333330;
76 a.pose.position.y = 0;
77 a.pose.position.z = 0.100000;
79 a.pose.orientation.x = 0.707107;
80 a.pose.orientation.y = 0;
81 a.pose.orientation.z = 0.707107;
82 a.pose.orientation.w = -0.000005;
90 const mrpt::poses::CPose3D a_mrpt = m2r::fromROS(a.pose);
91 const mrpt::poses::CPose3D b_mrpt = m2r::fromROS(b);
92 const mrpt::poses::CPose3D ab_mrpt = m2r::fromROS(ab.pose);
94 std::cout <<
"a: " << a_mrpt.asString() <<
"\nRot:\n"
95 << a_mrpt.getRotationMatrix() <<
"\n";
96 std::cout <<
"b: " << b_mrpt.asString() <<
"\nRot:\n"
97 << b_mrpt.getRotationMatrix() <<
"\n";
98 std::cout <<
"a+b: " << ab_mrpt.asString() <<
"\nRot:\n"
99 << ab_mrpt.getRotationMatrix() <<
"\n";
102 std::cout <<
"a: " << a <<
"\n";
103 std::cout <<
"b: " << b <<
"\n";
104 std::cout <<
"a(+)b: " << ab <<
"\n";
107 EXPECT_NEAR(ab.pose.position.x, -0.3333333, 0.01);
111 int main(
int argc,
char **argv) {
112 testing::InitGoogleTest(&argc, argv);
113 return RUN_ALL_TESTS();