#include "selfdrive/locationd/models/live_kf.h" using namespace EKFS; using namespace Eigen; Eigen::Map get_mapvec(const Eigen::VectorXd &vec) { return Eigen::Map((double*)vec.data(), vec.rows(), vec.cols()); } Eigen::Map get_mapmat(const MatrixXdr &mat) { return Eigen::Map((double*)mat.data(), mat.rows(), mat.cols()); } std::vector> get_vec_mapvec(const std::vector &vec_vec) { std::vector> res; for (const Eigen::VectorXd &vec : vec_vec) { res.push_back(get_mapvec(vec)); } return res; } std::vector> get_vec_mapmat(const std::vector &mat_vec) { std::vector> res; for (const MatrixXdr &mat : mat_vec) { res.push_back(get_mapmat(mat)); } return res; } LiveKalman::LiveKalman() { this->dim_state = live_initial_x.rows(); this->dim_state_err = live_initial_P_diag.rows(); this->initial_x = live_initial_x; this->initial_P = live_initial_P_diag.asDiagonal(); this->fake_gps_pos_cov = live_fake_gps_pos_cov_diag.asDiagonal(); this->fake_gps_vel_cov = live_fake_gps_vel_cov_diag.asDiagonal(); this->reset_orientation_P = live_reset_orientation_diag.asDiagonal(); this->Q = live_Q_diag.asDiagonal(); for (auto& pair : live_obs_noise_diag) { this->obs_noise[pair.first] = pair.second.asDiagonal(); } // init filter this->filter = std::make_shared(this->name, get_mapmat(this->Q), get_mapvec(this->initial_x), get_mapmat(initial_P), this->dim_state, this->dim_state_err, 0, 0, 0, std::vector(), std::vector{3}, std::vector(), 0.8); } void LiveKalman::init_state(const VectorXd &state, const VectorXd &covs_diag, double filter_time) { MatrixXdr covs = covs_diag.asDiagonal(); this->filter->init_state(get_mapvec(state), get_mapmat(covs), filter_time); } void LiveKalman::init_state(const VectorXd &state, const MatrixXdr &covs, double filter_time) { this->filter->init_state(get_mapvec(state), get_mapmat(covs), filter_time); } void LiveKalman::init_state(const VectorXd &state, double filter_time) { MatrixXdr covs = this->filter->covs(); this->filter->init_state(get_mapvec(state), get_mapmat(covs), filter_time); } VectorXd LiveKalman::get_x() { return this->filter->state(); } MatrixXdr LiveKalman::get_P() { return this->filter->covs(); } double LiveKalman::get_filter_time() { return this->filter->get_filter_time(); } std::vector LiveKalman::get_R(int kind, int n) { std::vector R; for (int i = 0; i < n; i++) { R.push_back(this->obs_noise[kind]); } return R; } std::optional LiveKalman::predict_and_observe(double t, int kind, const std::vector &meas, std::vector R) { std::optional r; if (R.size() == 0) { R = this->get_R(kind, meas.size()); } r = this->filter->predict_and_update_batch(t, kind, get_vec_mapvec(meas), get_vec_mapmat(R)); return r; } void LiveKalman::predict(double t) { this->filter->predict(t); } const Eigen::VectorXd &LiveKalman::get_initial_x() { return this->initial_x; } const MatrixXdr &LiveKalman::get_initial_P() { return this->initial_P; } const MatrixXdr &LiveKalman::get_fake_gps_pos_cov() { return this->fake_gps_pos_cov; } const MatrixXdr &LiveKalman::get_fake_gps_vel_cov() { return this->fake_gps_vel_cov; } const MatrixXdr &LiveKalman::get_reset_orientation_P() { return this->reset_orientation_P; } MatrixXdr LiveKalman::H(const VectorXd &in) { assert(in.size() == 6); Matrix res; this->filter->get_extra_routine("H")((double*)in.data(), res.data()); return res; }