MSCEqF 1.0
Multi State Constraint Equivariant Filter for visual inertial navigation
All Classes Functions Variables Typedefs Friends Pages
system_elements.hpp
1// Copyright (C) 2023 Alessandro Fornasier.
2// Control of Networked Systems, University of Klagenfurt, Austria.
3//
4// All rights reserved.
5//
6// This software is licensed under the terms of the BSD-2-Clause-License with
7// no commercial use allowed, the full terms of which are made available
8// in the LICENSE file. No license in patents is granted.
9//
10// You can contact the authors at <alessandro.fornasier@ieee.org>
11
12#ifndef SYSTEM_ELEMENTS_HPP
13#define SYSTEM_ELEMENTS_HPP
14
15#include <memory>
16
17#include "types/fptypes.hpp"
18
19namespace msceqf
20{
28enum class SystemStateElementName
29{
30 T,
31 b,
32 S,
33 K,
34};
35
41{
42 public:
43 virtual ~SystemStateElement() = default;
44
50 virtual std::unique_ptr<SystemStateElement> clone() const = 0;
51
52 protected:
54 SystemStateElement() = default;
55 SystemStateElement(const SystemStateElement&) = default;
57 SystemStateElement& operator=(const SystemStateElement&) = default;
58 SystemStateElement& operator=(SystemStateElement&&) = default;
59};
60
66{
67 ExtendedPoseState() : T_(){};
68 ExtendedPoseState(const SE23& T) : T_(T){};
69
75 std::unique_ptr<SystemStateElement> clone() const override { return std::make_unique<ExtendedPoseState>(*this); }
76
77 SE23 T_;
78};
79
84struct BiasState final : public SystemStateElement
85{
86 BiasState() : b_(Vector6::Zero()){};
87 BiasState(const Vector6& b) : b_(b){};
88
94 std::unique_ptr<SystemStateElement> clone() const override { return std::make_unique<BiasState>(*this); }
95
96 Vector6 b_;
97};
98
104{
105 CameraExtrinsicState() : S_(){};
106 CameraExtrinsicState(const Quaternion& q, const Vector3& t) : S_(q, {t}){};
107 CameraExtrinsicState(const Matrix3& R, const Vector3& t) : S_(R, {t}){};
108 CameraExtrinsicState(const Matrix4& S) : S_(S){};
109 CameraExtrinsicState(const SE3& S) : S_(S){};
110
116 std::unique_ptr<SystemStateElement> clone() const override { return std::make_unique<CameraExtrinsicState>(*this); }
117
118 SE3 S_;
119};
120
126{
127 CameraIntrinsicState() : K_(){};
128 CameraIntrinsicState(const fp& fx, const fp& fy, const fp& cx, const fp& cy) : K_(fx, fy, cx, cy){};
129 CameraIntrinsicState(const Vector4& intr) : K_(intr){};
130 CameraIntrinsicState(const Matrix3& K) : K_(K){};
131 CameraIntrinsicState(const In& K) : K_(K){};
132
138 std::unique_ptr<SystemStateElement> clone() const override { return std::make_unique<CameraIntrinsicState>(*this); }
139
140 In K_;
141};
142
147struct FeatureState final : public SystemStateElement
148{
149 public:
150 FeatureState() : f_(Vector3::Zero()){};
151 FeatureState(const Vector3& f) : f_(f){};
152 FeatureState(const fp& x, const fp& y, const fp& z) : f_({x, y, z}){};
153
159 std::unique_ptr<SystemStateElement> clone() const override { return std::make_unique<FeatureState>(*this); }
160
161 Vector3 f_;
162};
163
164using SystemStateElementSharedPtr = std::shared_ptr<SystemStateElement>;
165using SystemStateElementUniquePtr = std::unique_ptr<SystemStateElement>;
166using ExtendedPoseStateSharedPtr = std::shared_ptr<ExtendedPoseState>;
167using ExtendedPoseUniquePtr = std::unique_ptr<ExtendedPoseState>;
168using BiasStateStateSharedPtr = std::shared_ptr<BiasState>;
169using BiasStateStateUniquePtr = std::unique_ptr<BiasState>;
170using CameraExtrinsicStateStateSharedPtr = std::shared_ptr<CameraExtrinsicState>;
171using CameraExtrinsicStateStateUniquePtr = std::unique_ptr<CameraExtrinsicState>;
172using CameraIntrinsicStateStateSharedPtr = std::shared_ptr<CameraIntrinsicState>;
173using CameraIntrinsicStateStateUniquePtr = std::unique_ptr<CameraIntrinsicState>;
174using FeatureStateStateStateSharedPtr = std::shared_ptr<FeatureState>;
175using FeatureStateStateStateUniquePtr = std::unique_ptr<FeatureState>;
176
189template <typename T, typename... Args>
190[[nodiscard]] static SystemStateElementUniquePtr createSystemStateElement(const std::tuple<Args...>& args)
191{
192 return std::apply(
193 [](const auto&... args) {
194 if constexpr (std::is_base_of_v<SystemStateElement, T> && std::is_constructible_v<T, decltype(args)...>)
195 {
196 return std::make_unique<T>(args...);
197 }
198 else
199 {
200 return nullptr;
201 }
202 },
203 args);
204}
205
206} // namespace msceqf
207
208#endif // SYSTEM_ELEMENTS_HPP
This struct represent the base struct for a general element of the system state.
Definition system_elements.hpp:41
SystemStateElement()=default
Rule of Five.
virtual std::unique_ptr< SystemStateElement > clone() const =0
Clone.
This struct represent the IMU bias state of the system.
Definition system_elements.hpp:85
Vector6 b_
The Inertial Measurement Unit (IMU) biases (bw, ba)
Definition system_elements.hpp:96
std::unique_ptr< SystemStateElement > clone() const override
Clone the bias state element of the system.
Definition system_elements.hpp:94
This struct represent the camera extrinsics state of the system.
Definition system_elements.hpp:104
SE3 S_
The camera extrinsics calibration (SR, St)
Definition system_elements.hpp:118
std::unique_ptr< SystemStateElement > clone() const override
Clone the camera extrinsics state element of the system.
Definition system_elements.hpp:116
This struct represent the camera intrinsics state of the system.
Definition system_elements.hpp:126
std::unique_ptr< SystemStateElement > clone() const override
Clone the camera instirnsic state element of the system.
Definition system_elements.hpp:138
In K_
The camera intrinsics calibration (K)
Definition system_elements.hpp:140
This struct represent the extended pose state of the system.
Definition system_elements.hpp:66
SE23 T_
The extended pose of the system (R, v, p)
Definition system_elements.hpp:77
std::unique_ptr< SystemStateElement > clone() const override
Clone the extended pose state element of the system.
Definition system_elements.hpp:75
This struct represent a single persistent feature state of the system.
Definition system_elements.hpp:148
Vector3 f_
The persistent feature (f)
Definition system_elements.hpp:161
std::unique_ptr< SystemStateElement > clone() const override
Clone the persistent feature state element of the system.
Definition system_elements.hpp:159