pose_estimation
Macros
Measurement.hpp File Reference
#include <Eigen/Core>

Go to the source code of this file.

Macros

#define MEASUREMENT(NAME, DIM)
 

Macro Definition Documentation

◆ MEASUREMENT

#define MEASUREMENT (   NAME,
  DIM 
)
Value:
struct NAME \
{ \
typedef Eigen::Matrix<double, DIM, 1> Mu; \
typedef Eigen::Matrix<double, DIM, DIM> Cov; \
\
NAME() : mu(Mu::Zero()), cov(Cov::Identity()) {} \
\
Mu mu; \
Cov cov; \
};