Skip to content
Snippets Groups Projects
Commit 7705f7c2 authored by Joan Solà Ortega's avatar Joan Solà Ortega
Browse files

Some fixes to feature_motion

parent 6c51e429
No related branches found
No related tags found
1 merge request!307New Diff Drive suite with sensor self-calibration
Pipeline #4070 failed
This commit is part of merge request !307. Comments created here will be created in the context of that merge request.
......@@ -236,6 +236,7 @@ SET(HDRS_FEATURE
include/core/feature/feature_base.h
include/core/feature/feature_diff_drive.h
include/core/feature/feature_match.h
include/core/feature/feature_motion.h
include/core/feature/feature_odom_2D.h
include/core/feature/feature_pose.h
)
......@@ -335,6 +336,7 @@ SET(SRCS_FACTOR
SET(SRCS_FEATURE
src/feature/feature_base.cpp
src/feature/feature_diff_drive.cpp
src/feature/feature_motion.cpp
src/feature/feature_odom_2D.cpp
src/feature/feature_pose.cpp
)
......
......@@ -25,8 +25,8 @@ class FeatureMotion : public FeatureBase
const Eigen::MatrixXs& getJacobianCalibration() const;
private:
Eigen::VectorXs& calib_preint_;
Eigen::MatrixXs& jacobian_calib_;
Eigen::VectorXs calib_preint_;
Eigen::MatrixXs jacobian_calib_;
};
inline const Eigen::VectorXs& FeatureMotion::getDeltaPreint() const
......
......@@ -5,7 +5,7 @@
* Author: jsola
*/
#include "feature_motion.h"
#include "core/feature/feature_motion.h"
namespace wolf
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment