Last updated on November 26, 2023 pm
                  
                
              
            
            
              
                
                [TOC]
MSCKF
| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 
 | typedefstd::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;
 };
 
 | 
 
                
               
            
            
            
              
              
  
  
    
      Data Association in MSCKF
      https://cgabc.xyz/posts/c92888db/