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

Fix includes that were with <..> instead of ".."

parent d949c9c3
No related branches found
No related tags found
No related merge requests found
Showing
with 28 additions and 40 deletions
#include <capture_GPS.h> #include "capture_GPS.h"
namespace wolf { namespace wolf {
......
#include <capture_GPS_fix.h> #include "capture_GPS_fix.h"
namespace wolf { namespace wolf {
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
#define CAPTURE_GPS_FIX_H_ #define CAPTURE_GPS_FIX_H_
//Wolf includes //Wolf includes
#include <feature_GPS_fix.h> #include "feature_GPS_fix.h"
#include "capture_base.h" #include "capture_base.h"
//std includes //std includes
......
#include <capture_IMU.h> #include "capture_IMU.h"
#include <sensor_IMU.h> #include "sensor_IMU.h"
#include "state_quaternion.h" #include "state_quaternion.h"
namespace wolf { namespace wolf {
......
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
#include "sensor_camera.h" #include "sensor_camera.h"
// Vision Utils includes // Vision Utils includes
#include <vision_utils/vision_utils.h> #include "vision_utils/vision_utils.h"
#include <vision_utils/common_class/frame.h> #include "vision_utils/common_class/frame.h"
namespace wolf { namespace wolf {
......
...@@ -4,8 +4,8 @@ ...@@ -4,8 +4,8 @@
#define LIGHT_SPEED 299792458 #define LIGHT_SPEED 299792458
//Wolf includes //Wolf includes
#include <sensor_GPS.h> #include "sensor_GPS.h"
#include <feature_GPS_pseudorange.h> #include "feature_GPS_pseudorange.h"
#include "constraint_autodiff.h" #include "constraint_autodiff.h"
namespace wolf { namespace wolf {
......
...@@ -3,8 +3,8 @@ ...@@ -3,8 +3,8 @@
#define CONSTRAINT_FIX_BIAS_H_ #define CONSTRAINT_FIX_BIAS_H_
//Wolf includes //Wolf includes
#include <capture_IMU.h> #include "capture_IMU.h"
#include <feature_IMU.h> #include "feature_IMU.h"
#include "constraint_autodiff.h" #include "constraint_autodiff.h"
#include "frame_base.h" #include "frame_base.h"
#include "rotations.h" #include "rotations.h"
......
#include <feature_GPS_fix.h> #include "feature_GPS_fix.h"
namespace wolf { namespace wolf {
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
#define FEATURE_GPS_FIX_H_ #define FEATURE_GPS_FIX_H_
//Wolf includes //Wolf includes
#include <constraint_GPS_2D.h> #include "constraint_GPS_2D.h"
#include "feature_base.h" #include "feature_base.h"
//std includes //std includes
......
#include <feature_GPS_pseudorange.h> #include "feature_GPS_pseudorange.h"
namespace wolf { namespace wolf {
......
#include <feature_IMU.h> #include "feature_IMU.h"
namespace wolf { namespace wolf {
......
#include <landmark_point_3D.h> #include "landmark_point_3D.h"
namespace wolf { namespace wolf {
......
...@@ -10,13 +10,13 @@ ...@@ -10,13 +10,13 @@
#include "constraint_base.h" #include "constraint_base.h"
#include "state_block.h" #include "state_block.h"
#include "processor_motion.h" #include "processor_motion.h"
#include "sensor_GPS.h"
#include "processor_tracker.h" #include "processor_tracker.h"
//#include "processors/processor_tracker_feature_trifocal.h" //#include "processors/processor_tracker_feature_trifocal.h"
#include "capture_pose.h" #include "capture_pose.h"
// IRI libs includes // IRI libs includes
#include <sensor_GPS.h>
// C++ includes // C++ includes
#include <algorithm> #include <algorithm>
......
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
// Created by ptirindelli on 16/12/15. // Created by ptirindelli on 16/12/15.
// //
#include <constraint_GPS_pseudorange_2D.h> #include "constraint_GPS_pseudorange_2D.h"
#include <feature_GPS_pseudorange.h> #include "feature_GPS_pseudorange.h"
#include <processor_GPS.h> #include "processor_GPS.h"
#include "capture_GPS.h" #include "capture_GPS.h"
......
#include <IMU_tools.h> // wolf
#include <processor_IMU.h> #include "processor_IMU.h"
#include "constraint_IMU.h"
#include "IMU_tools.h"
namespace wolf { namespace wolf {
......
...@@ -63,13 +63,6 @@ class ProcessorIMU : public ProcessorMotion{ ...@@ -63,13 +63,6 @@ class ProcessorIMU : public ProcessorMotion{
protected: protected:
ProcessorParamsIMUPtr params_motion_IMU_; ProcessorParamsIMUPtr params_motion_IMU_;
// keyframe voting parameters
// Scalar max_time_span_; // maximum time between keyframes
// Size max_buff_length_;// maximum buffer size before keyframe
// Scalar dist_traveled_; // maximum linear motion between keyframes
// Scalar angle_turned_; // maximum rotation between keyframes
public: public:
//for factory //for factory
static ProcessorBasePtr create(const std::string& _unique_name, const ProcessorParamsBasePtr _params, const SensorBasePtr sensor_ptr = nullptr); static ProcessorBasePtr create(const std::string& _unique_name, const ProcessorParamsBasePtr _params, const SensorBasePtr sensor_ptr = nullptr);
...@@ -81,13 +74,6 @@ class ProcessorIMU : public ProcessorMotion{ ...@@ -81,13 +74,6 @@ class ProcessorIMU : public ProcessorMotion{
// IMPLEMENTATION. Put your implementation includes here // IMPLEMENTATION. Put your implementation includes here
///////////////////////////////////////////////////////// /////////////////////////////////////////////////////////
// Wolf
#include "constraint_IMU.h"
#include "state_block.h"
#include "rotations.h"
#include "IMU_tools.h"
namespace wolf{ namespace wolf{
inline Eigen::VectorXs ProcessorIMU::deltaZero() const inline Eigen::VectorXs ProcessorIMU::deltaZero() const
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
#include "constraint_epipolar.h" #include "constraint_epipolar.h"
#include "processor_params_image.h" #include "processor_params_image.h"
// vision_utils
#include <detectors/detector_base.h> #include <detectors/detector_base.h>
#include <descriptors/descriptor_base.h> #include <descriptors/descriptor_base.h>
#include <matchers/matcher_base.h> #include <matchers/matcher_base.h>
......
#include <sensor_GPS.h> #include "sensor_GPS.h"
#include "state_block.h" #include "state_block.h"
#include "state_quaternion.h" #include "state_quaternion.h"
......
#include <sensor_GPS_fix.h> #include "sensor_GPS_fix.h"
#include "state_block.h" #include "state_block.h"
#include "state_quaternion.h" #include "state_quaternion.h"
......
#include <sensor_IMU.h> #include "sensor_IMU.h"
#include "state_block.h" #include "state_block.h"
#include "state_quaternion.h" #include "state_quaternion.h"
......
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