Data Association in MSCKF

 

[TOC]

MSCKF

typedef
std::map<FeatureIDType, Feature, std::less<int>,
  Eigen::aligned_allocator<std::pair<const FeatureIDType, Feature> > > MapServer;

struct Feature {
  FeatureIDType id;

  Eigen::Vector3d position;

  std::map<StateIDType, Eigen::Vector4d, std::less<StateIDType>,
    Eigen::aligned_allocator<std::pair<const StateIDType, Eigen::Vector4d> > > observations;
};