Skip to content
Snippets Groups Projects

Draft: Resolve "Implementation of new nodes creation"

Open Joan Vallvé Navarro requested to merge 454-implementation-of-new-nodes-creation into devel
7 files
+ 107
89
Compare changes
  • Side-by-side
  • Inline
Files
7
@@ -104,7 +104,7 @@ struct ParamsSensorBase: public ParamsBase
std::string print() const override
{
return "noise_std: " + std::to_string(noise_std) + "\n";
return "noise_std: ";// + to_string(noise_std) + "\n";
}
};
@@ -128,7 +128,7 @@ class SensorBase : public NodeBase, public HasStateBlocks, public std::enable_sh
CaptureBasePtr last_capture_; // last capture of the sensor (in the WOLF tree)
protected:
//Eigen::VectorXd noise_std_; // std of sensor noise
Eigen::VectorXd noise_std_; // std of sensor noise
Eigen::MatrixXd noise_cov_; // cov matrix of noise
void setProblem(ProblemPtr _problem) override final;
Loading