12#ifndef SYSTEM_ELEMENTS_HPP
13#define SYSTEM_ELEMENTS_HPP
17#include "types/fptypes.hpp"
28enum class SystemStateElementName
50 virtual std::unique_ptr<SystemStateElement>
clone()
const = 0;
75 std::unique_ptr<SystemStateElement>
clone()
const override {
return std::make_unique<ExtendedPoseState>(*
this); }
94 std::unique_ptr<SystemStateElement>
clone()
const override {
return std::make_unique<BiasState>(*
this); }
116 std::unique_ptr<SystemStateElement>
clone()
const override {
return std::make_unique<CameraExtrinsicState>(*
this); }
138 std::unique_ptr<SystemStateElement>
clone()
const override {
return std::make_unique<CameraIntrinsicState>(*
this); }
152 FeatureState(
const fp& x,
const fp& y,
const fp& z) :
f_({x, y, z}){};
159 std::unique_ptr<SystemStateElement>
clone()
const override {
return std::make_unique<FeatureState>(*
this); }
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>;
189template <
typename T,
typename... Args>
190[[nodiscard]]
static SystemStateElementUniquePtr createSystemStateElement(
const std::tuple<Args...>& args)
193 [](
const auto&... args) {
194 if constexpr (std::is_base_of_v<SystemStateElement, T> && std::is_constructible_v<T,
decltype(args)...>)
196 return std::make_unique<T>(args...);
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