test_pose_cov_ops.cpp
Go to the documentation of this file.
1 /* pose_cov_ops
2  *
3  * Copyright 2012-2022, Jose Luis Blanco Claraco
4  * License: BSD 3-Clause License
5  */
6 
8 //
9 #include <gtest/gtest.h>
10 #include <iostream>
11 #include <mrpt/poses/CPose3D.h>
12 
13 #if PACKAGE_ROS_VERSION == 1
14 #include <mrpt/ros1bridge/pose.h>
15 namespace m2r = mrpt::ros1bridge;
16 #else
17 #include <mrpt/ros2bridge/pose.h>
18 namespace m2r = mrpt::ros2bridge;
19 #endif
20 
21 TEST(PoseCovOps, composition) {
22  using namespace std;
23  using namespace pose_cov_ops;
24 
25  // Test added while debugging report:
26  // https://github.com/mrpt-ros-pkg/pose_cov_ops/issues/7
27 
29  a.pose.position.x = -0.333330;
30  a.pose.position.y = 0;
31  a.pose.position.z = 0.100000;
32 
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;
37 
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;
46 
48  pose_cov_ops::compose(a, b, ab);
49 
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);
53 
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";
60 
61 #if 0
62  std::cout << "a: " << a << "\n";
63  std::cout << "b: " << b << "\n";
64  std::cout << "a(+)b: " << ab << "\n";
65 #endif
66 
67  EXPECT_NEAR(ab.pose.position.x, -0.3333333, 0.01);
68 }
69 
70 TEST(PoseCovOps, compositionTF2) {
71  using namespace std;
72  using namespace pose_cov_ops;
73 
75  a.pose.position.x = -0.333330;
76  a.pose.position.y = 0;
77  a.pose.position.z = 0.100000;
78 
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;
83 
85  b.setOrigin({1.435644, .0, .0});
86  b.setRotation({1.0, .0, .0, .0});
87 
89 
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);
93 
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";
100 
101 #if 0
102  std::cout << "a: " << a << "\n";
103  std::cout << "b: " << b << "\n";
104  std::cout << "a(+)b: " << ab << "\n";
105 #endif
106 
107  EXPECT_NEAR(ab.pose.position.x, -0.3333333, 0.01);
108 }
109 
110 // Run all the tests that were declared with TEST()
111 int main(int argc, char **argv) {
112  testing::InitGoogleTest(&argc, argv);
113  return RUN_ALL_TESTS();
114 }
main
int main(int argc, char **argv)
Definition: test_pose_cov_ops.cpp:111
tf2::Transform::setRotation
TF2SIMD_FORCE_INLINE void setRotation(const Quaternion &q)
TEST
TEST(PoseCovOps, composition)
Definition: test_pose_cov_ops.cpp:21
pose_cov_ops::compose
void compose(const Pose &a, const Pose &b, Pose &out)
Definition: pose_cov_ops.cpp:20
pose_cov_ops::PoseWithCovariance
geometry_msgs::msg::PoseWithCovariance PoseWithCovariance
Definition: pose_cov_ops.h:25
tf2::Transform::setOrigin
TF2SIMD_FORCE_INLINE void setOrigin(const Vector3 &origin)
tf2::Transform
std
pose_cov_ops
Definition: pose_cov_ops.h:18
pose_cov_ops.h


pose_cov_ops
Author(s):
autogenerated on Wed Jan 22 2025 03:47:34