-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question: manif Bundle<> or other ways to support composite/compound state. #9
Comments
No impediments found. |
Hi @slovak194, |
Hi, @artivis , I think it is worth reopening this issue as @joansola has added valuable comments here: #10 (comment) And I see now, that my statement above (No impediments found.) is not correct. I have to admit, that even after reading the Micro Lie Theory paper my overall understanding of the topic may be too shallow. Please, consider my inputs as from the user/application point of view, which may not coincide with the strategy of the manif/kalmanif development. From the practical point of view, I'd like to have a way to quickly specify real-world states, which are usually not just individual group members, but many heterogeneous fields. Here is a simple example, and in my case, I'm going to have a few times more. using SFWA_StateVector = UKF::StateVector<
UKF::Field<LatLon, UKF::Vector<2>>, /* Latitude and longitude (rad) */
UKF::Field<Altitude, real_t>, /* Altitude above the WGS84 ellipsoid (m) */
UKF::Field<Velocity, UKF::Vector<3>>, /* Velocity (NED frame, m/s) */
UKF::Field<Acceleration, UKF::Vector<3>>, /* Acceleration (body frame, m/s^2) */
UKF::Field<Attitude, UKF::Quaternion>, /* Attitude as a quaternion (NED frame to body frame) */
UKF::Field<AngularVelocity, UKF::Vector<3>>, /* Angular velocity (body frame, rad/s) */
UKF::Field<AngularAcceleration, UKF::Vector<3>>, /* Angular acceleration (body frame, rad/s^2) */
UKF::Field<WindVelocity, UKF::Vector<3>>, /* Wind velocity (NED frame, m/s) */
UKF::Field<GyroBias, UKF::Vector<3>> /* Gyro bias (body frame, rad/s) */
>; For that purpose Bundle looked great at first.
That is not a big issue from my point of view, as in general, the state transition function takes the time delta, current state, and control input to integrate the state of the system forward.
If I correctly understood the answer from @joansola in another issue, this is not the case.
As for me, it brakes the statement written here: Best regards, |
It looks my initial understanding was correct. |
Dear, @artivis
I followed your discussion here regarding the need for composite/compound state support. I also see that in the manif repo, there is a way to do so with the Bundle<>. But there is no example in this repository of how to do that. Are there any impediments invisible to me that prevent using composite states?
The idea is to use manif/kalmanif for a practical application with a heterogeneous state:
SE(3) - robot pose().
SO(3), SE(3) - sensor locations, orientations.
1D vectors, or scalars - sensor biases.
(Optionally) 2D matrix - more complex sensor calibrations, homography, maybe members of other groups such as SIM(3).
Looking forward to your answer!
Best regards,
Alex
The text was updated successfully, but these errors were encountered: