Vins-Mono 论文 && Coding 一 6(1). VIO: slideWindow

一、作用

滑动窗口,修改对应内存位置

二、滑动策略

1. marginalization_flag == MARGIN_OLD

(1). margin 最老帧

for (int i = 0; i < WINDOW_SIZE; i++) {
     Rs[i].swap(Rs[i + 1]);

     std::swap(pre_integrations[i], pre_integrations[i + 1]);

     dt_buf[i].swap(dt_buf[i + 1]);
     linear_acceleration_buf[i].swap(linear_acceleration_buf[i + 1]);
     angular_velocity_buf[i].swap(angular_velocity_buf[i + 1]);

     Headers[i] = Headers[i + 1];
     Ps[i].swap(Ps[i + 1]);
     Vs[i].swap(Vs[i + 1]);
     Bas[i].swap(Bas[i + 1]);
     Bgs[i].swap(Bgs[i + 1]);
}
Headers[WINDOW_SIZE] = Headers[WINDOW_SIZE - 1];
Ps[WINDOW_SIZE] = Ps[WINDOW_SIZE - 1];
Vs[WINDOW_SIZE] = Vs[WINDOW_SIZE - 1];
Rs[WINDOW_SIZE] = Rs[WINDOW_SIZE - 1];
Bas[WINDOW_SIZE] = Bas[WINDOW_SIZE - 1];
Bgs[WINDOW_SIZE] = Bgs[WINDOW_SIZE - 1];

delete pre_integrations[WINDOW_SIZE];
pre_integrations[WINDOW_SIZE] = new IntegrationBase{acc_0, gyr_0, Bas[WINDOW_SIZE], Bgs[WINDOW_SIZE]};
dt_buf[WINDOW_SIZE].clear();
linear_acceleration_buf[WINDOW_SIZE].clear();
angular_velocity_buf[WINDOW_SIZE].clear();

// 删除绑定的临时预积分对象
if (true || solver_flag == INITIAL) {
    map<double, ImageFrame>::iterator it_0;
    it_0 = all_image_frame.find(t_0);
    delete it_0->second.pre_integration;
    it_0->second.pre_integration = nullptr;
    for (map<double, ImageFrame>::iterator it = all_image_frame.begin(); it != it_0; ++it)  {
        if (it->second.pre_integration)
            delete it->second.pre_integration;
        it->second.pre_integration = NULL;
    }
    all_image_frame.erase(all_image_frame.begin(), it_0);
    all_image_frame.erase(t_0);
}

(2). slideWindowOld

void Estimator::slideWindowOld()
{
    sum_of_back++;
    bool shift_depth = solver_flag == NON_LINEAR ? true : false;
    // 删除和该帧关联的 features 观测
    if (shift_depth) {
        Matrix3d R0, R1;
        Vector3d P0, P1;
        R0 = back_R0 * ric[0];
        R1 = Rs[0] * ric[0];
        P0 = back_P0 + back_R0 * tic[0];
        P1 = Ps[0] + Rs[0] * tic[0];
        // 删除 feature-per-frame 最旧帧,同时更新深度
        f_manager.removeBackShiftDepth(R0, P0, R1, P1);
    }
    else
        f_manager.removeBack();  // 删除 feature-per-frame 最旧帧
}

2. marginalization_flag == MARGIN_SECOND_NEW

(1). margin 第 frame_count -1 帧

     for (unsigned int i = 0; i < dt_buf[frame_count].size(); i++) {
         double tmp_dt = dt_buf[frame_count][i];
         Vector3d tmp_linear_acceleration = linear_acceleration_buf[frame_count][i];
         Vector3d tmp_angular_velocity = angular_velocity_buf[frame_count][i];
         pre_integrations[frame_count - 1]->push_back(tmp_dt, tmp_linear_acceleration, tmp_angular_velocity);
         dt_buf[frame_count - 1].push_back(tmp_dt);
         linear_acceleration_buf[frame_count - 1].push_back(tmp_linear_acceleration);
         angular_velocity_buf[frame_count - 1].push_back(tmp_angular_velocity);
    }

    Headers[frame_count - 1] = Headers[frame_count];
    Ps[frame_count - 1] = Ps[frame_count];
    Vs[frame_count - 1] = Vs[frame_count];
    Rs[frame_count - 1] = Rs[frame_count];
    Bas[frame_count - 1] = Bas[frame_count];
    Bgs[frame_count - 1] = Bgs[frame_count];

    delete pre_integrations[WINDOW_SIZE];
    pre_integrations[WINDOW_SIZE] = new IntegrationBase{acc_0, gyr_0, Bas[WINDOW_SIZE], Bgs[WINDOW_SIZE]};
    dt_buf[WINDOW_SIZE].clear();
    linear_acceleration_buf[WINDOW_SIZE].clear();
    angular_velocity_buf[WINDOW_SIZE].clear();

(2). slideWindowNew

void Estimator::slideWindowNew()
{
    sum_of_front++;
    // 删除和该帧关联的 features 观测
    f_manager.removeFront(frame_count);
}
void FeatureManager::removeFront(int frame_count)
{
    for (auto it = feature.begin(), it_next = feature.begin(); it != feature.end(); it = it_next) {
        it_next++;

        if (it->start_frame == frame_count) {  // 对应帧第一次观测
            it->start_frame--;
        } else {
            int j = WINDOW_SIZE - 1 - it->start_frame;
            if (it->endFrame() < frame_count - 1)
                continue;
            it->feature_per_frame.erase(it->feature_per_frame.begin() + j);  // 删除对应帧观测
            if (it->feature_per_frame.size() == 0)
                feature.erase(it);
        }
    }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值