Skip to content
Snippets Groups Projects

WIP: Resolve "Remove wolf::Scalar and use double instead"

Merged Joan Solà Ortega requested to merge 264-remove-wolf-scalar-and-use-double-instead into devel
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -34,8 +34,8 @@ inline bool FactorPose3D::operator ()(const T* const _p, const T* const _o, T* _
{
// states
Eigen::Matrix<T, 3, 1> p(_p);
Eigen::Quaternion<T> q(_o);
Eigen::Map<const Eigen::Matrix<T, 3, 1>> p(_p);
Eigen::Map<const Eigen::Quaternion<T>> q(_o);
// measurements
Eigen::Vector3d p_measured(getMeasurement().data() + 0);
Loading