21
21
22
22
#pragma once
23
23
24
- #include < gtsam/geometry/Pose3.h>
25
24
#include < gtsam/base/Matrix.h>
26
25
#include < gtsam/base/std_optional_serialization.h>
26
+ #include < gtsam/geometry/Pose3.h>
27
+ #include " gtsam/dllexport.h"
27
28
28
29
namespace gtsam {
29
30
31
+ namespace internal {
32
+ /* *
33
+ * @brief Function object for incremental rotation.
34
+ * @param measuredOmega The measured angular velocity (as given by the sensor)
35
+ * @param deltaT The time interval over which the rotation is integrated.
36
+ * @param body_P_sensor Optional transform between body and IMU.
37
+ */
38
+ struct GTSAM_EXPORT IncrementalRotation {
39
+ const Vector3& measuredOmega;
40
+ const double deltaT;
41
+ const std::optional<Pose3>& body_P_sensor;
42
+
43
+ /* *
44
+ * @brief Integrate angular velocity, but corrected by bias.
45
+ * @param bias The bias estimate
46
+ * @param H_bias Jacobian of the rotation w.r.t. bias.
47
+ * @return The incremental rotation
48
+ */
49
+ Rot3 operator ()(const Vector3& bias,
50
+ OptionalJacobian<3 , 3 > H_bias = {}) const ;
51
+ };
52
+
53
+ } // namespace internal
54
+
30
55
// / Parameters for pre-integration:
31
56
// / Usage: Create just a single Params and pass a shared pointer to the constructor
32
57
struct GTSAM_EXPORT PreintegratedRotationParams {
@@ -65,7 +90,6 @@ struct GTSAM_EXPORT PreintegratedRotationParams {
65
90
friend class boost ::serialization::access;
66
91
template <class ARCHIVE >
67
92
void serialize (ARCHIVE & ar, const unsigned int /* version*/ ) {
68
- namespace bs = ::boost::serialization;
69
93
ar & BOOST_SERIALIZATION_NVP (gyroscopeCovariance);
70
94
ar & BOOST_SERIALIZATION_NVP (body_P_sensor);
71
95
@@ -136,18 +160,10 @@ class GTSAM_EXPORT PreintegratedRotation {
136
160
137
161
// / @name Access instance variables
138
162
// / @{
139
- const std::shared_ptr<Params>& params () const {
140
- return p_;
141
- }
142
- const double & deltaTij () const {
143
- return deltaTij_;
144
- }
145
- const Rot3& deltaRij () const {
146
- return deltaRij_;
147
- }
148
- const Matrix3& delRdelBiasOmega () const {
149
- return delRdelBiasOmega_;
150
- }
163
+ const std::shared_ptr<Params>& params () const { return p_; }
164
+ const double & deltaTij () const { return deltaTij_; }
165
+ const Rot3& deltaRij () const { return deltaRij_; }
166
+ const Matrix3& delRdelBiasOmega () const { return delRdelBiasOmega_; }
151
167
// / @}
152
168
153
169
// / @name Testable
@@ -159,19 +175,24 @@ class GTSAM_EXPORT PreintegratedRotation {
159
175
// / @name Main functionality
160
176
// / @{
161
177
162
- // / Take the gyro measurement, correct it using the (constant) bias estimate
163
- // / and possibly the sensor pose, and then integrate it forward in time to yield
164
- // / an incremental rotation.
165
- Rot3 incrementalRotation (const Vector3& measuredOmega, const Vector3& biasHat, double deltaT,
166
- OptionalJacobian<3 , 3 > D_incrR_integratedOmega) const ;
167
-
168
- // / Calculate an incremental rotation given the gyro measurement and a time interval,
169
- // / and update both deltaTij_ and deltaRij_.
170
- void integrateMeasurement (const Vector3& measuredOmega, const Vector3& biasHat, double deltaT,
171
- OptionalJacobian<3 , 3 > D_incrR_integratedOmega = {},
172
- OptionalJacobian<3 , 3 > F = {});
173
-
174
- // / Return a bias corrected version of the integrated rotation, with optional Jacobian
178
+ /* *
179
+ * @brief Calculate an incremental rotation given the gyro measurement and a
180
+ * time interval, and update both deltaTij_ and deltaRij_.
181
+ * @param measuredOmega The measured angular velocity (as given by the sensor)
182
+ * @param bias The biasHat estimate
183
+ * @param deltaT The time interval
184
+ * @param F optional Jacobian of internal compose, used in AhrsFactor.
185
+ */
186
+ void integrateGyroMeasurement (const Vector3& measuredOmega,
187
+ const Vector3& biasHat, double deltaT,
188
+ OptionalJacobian<3 , 3 > F = {});
189
+
190
+ /* *
191
+ * @brief Return a bias corrected version of the integrated rotation.
192
+ * @param biasOmegaIncr An increment with respect to biasHat used above.
193
+ * @param H optional Jacobian of the correction w.r.t. the bias increment.
194
+ * @note The *key* functionality of this class used in optimizing the bias.
195
+ */
175
196
Rot3 biascorrectedDeltaRij (const Vector3& biasOmegaIncr,
176
197
OptionalJacobian<3 , 3 > H = {}) const ;
177
198
@@ -180,6 +201,31 @@ class GTSAM_EXPORT PreintegratedRotation {
180
201
181
202
// / @}
182
203
204
+ // / @name Deprecated API
205
+ // / @{
206
+
207
+ #ifdef GTSAM_ALLOW_DEPRECATED_SINCE_V43
208
+ // / @deprecated: use IncrementalRotation functor with sane Jacobian
209
+ inline Rot3 GTSAM_DEPRECATED incrementalRotation (
210
+ const Vector3& measuredOmega, const Vector3& bias, double deltaT,
211
+ OptionalJacobian<3 , 3 > D_incrR_integratedOmega) const {
212
+ internal::IncrementalRotation f{measuredOmega, deltaT, p_->body_P_sensor };
213
+ Rot3 incrR = f (bias, D_incrR_integratedOmega);
214
+ // Backwards compatible "weird" Jacobian, no longer used.
215
+ if (D_incrR_integratedOmega) *D_incrR_integratedOmega /= -deltaT;
216
+ return incrR;
217
+ }
218
+
219
+ // / @deprecated: use integrateGyroMeasurement from now on
220
+ // / @note this returned hard-to-understand Jacobian D_incrR_integratedOmega.
221
+ void GTSAM_DEPRECATED integrateMeasurement (
222
+ const Vector3& measuredOmega, const Vector3& biasHat, double deltaT,
223
+ OptionalJacobian<3 , 3 > D_incrR_integratedOmega, OptionalJacobian<3 , 3 > F);
224
+
225
+ #endif
226
+
227
+ // / @}
228
+
183
229
private:
184
230
#ifdef GTSAM_ENABLE_BOOST_SERIALIZATION
185
231
/* * Serialization function */
0 commit comments