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

Remove constructor and destructor from Params structs

parent 95e78928
No related branches found
No related tags found
1 merge request!170Processors api
Pipeline #
...@@ -17,18 +17,6 @@ struct ProcessorParamsIMU : public ProcessorParamsBase ...@@ -17,18 +17,6 @@ struct ProcessorParamsIMU : public ProcessorParamsBase
Scalar dist_traveled = 5; Scalar dist_traveled = 5;
Scalar angle_turned = 0.5; Scalar angle_turned = 0.5;
bool voting_active = false; //IMU will not vote for key Frames to be created bool voting_active = false; //IMU will not vote for key Frames to be created
// ProcessorParamsIMU() :
// max_time_span(0.5),
// max_buff_length(10),
// dist_traveled(5),
// angle_turned(.5),
// voting_active(false)
// {
// type = "IMU";
// name = "";
// }
}; };
WOLF_PTR_TYPEDEFS(ProcessorIMU); WOLF_PTR_TYPEDEFS(ProcessorIMU);
......
...@@ -8,7 +8,7 @@ namespace wolf{ ...@@ -8,7 +8,7 @@ namespace wolf{
struct ProcessorParamsLoopClosure : public ProcessorParamsBase struct ProcessorParamsLoopClosure : public ProcessorParamsBase
{ {
virtual ~ProcessorParamsLoopClosure() = default; // virtual ~ProcessorParamsLoopClosure() = default;
// add neccesery parameters for loop closure initialisation here and initialize // add neccesery parameters for loop closure initialisation here and initialize
// them in constructor // them in constructor
......
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