Skip to content
Snippets Groups Projects
Commit f92a9b5f authored by Joaquim Casals Buñuel's avatar Joaquim Casals Buñuel
Browse files

Fixed includes base -> core

parent e0f6ee05
No related branches found
No related tags found
No related merge requests found
Pipeline #2912 failed
Showing
with 39 additions and 39 deletions
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
#ifndef HELLO_WOLF_CAPTURE_RANGE_BEARING_H_ #ifndef HELLO_WOLF_CAPTURE_RANGE_BEARING_H_
#define HELLO_WOLF_CAPTURE_RANGE_BEARING_H_ #define HELLO_WOLF_CAPTURE_RANGE_BEARING_H_
#include "base/capture/capture_base.h" #include "core/capture/capture_base.h"
namespace wolf namespace wolf
{ {
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
#ifndef HELLO_WOLF_FACTOR_BEARING_H_ #ifndef HELLO_WOLF_FACTOR_BEARING_H_
#define HELLO_WOLF_FACTOR_BEARING_H_ #define HELLO_WOLF_FACTOR_BEARING_H_
#include "base/factor/factor_autodiff.h" #include "core/factor/factor_autodiff.h"
namespace wolf namespace wolf
{ {
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
#ifndef HELLO_WOLF_FACTOR_RANGE_BEARING_H_ #ifndef HELLO_WOLF_FACTOR_RANGE_BEARING_H_
#define HELLO_WOLF_FACTOR_RANGE_BEARING_H_ #define HELLO_WOLF_FACTOR_RANGE_BEARING_H_
#include "base/factor/factor_autodiff.h" #include "core/factor/factor_autodiff.h"
namespace wolf namespace wolf
{ {
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
#ifndef HELLO_WOLF_FEATURE_RANGE_BEARING_H_ #ifndef HELLO_WOLF_FEATURE_RANGE_BEARING_H_
#define HELLO_WOLF_FEATURE_RANGE_BEARING_H_ #define HELLO_WOLF_FEATURE_RANGE_BEARING_H_
#include "base/feature/feature_base.h" #include "core/feature/feature_base.h"
namespace wolf namespace wolf
{ {
......
...@@ -12,10 +12,10 @@ ...@@ -12,10 +12,10 @@
* \author: jsola * \author: jsola
*/ */
#include "base/common/wolf.h" #include "core/common/wolf.h"
#include "base/sensor/sensor_odom_2D.h" #include "core/sensor/sensor_odom_2D.h"
#include "base/processor/processor_odom_2D.h" #include "core/processor/processor_odom_2D.h"
#include "sensor_range_bearing.h" #include "sensor_range_bearing.h"
#include "processor_range_bearing.h" #include "processor_range_bearing.h"
#include "capture_range_bearing.h" #include "capture_range_bearing.h"
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
#include "factor_range_bearing.h" #include "factor_range_bearing.h"
#include "landmark_point_2D.h" #include "landmark_point_2D.h"
#include "base/ceres_wrapper/ceres_manager.h" #include "core/ceres_wrapper/ceres_manager.h"
int main() int main()
{ {
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
#ifndef HELLO_WOLF_LANDMARK_POINT_2D_H_ #ifndef HELLO_WOLF_LANDMARK_POINT_2D_H_
#define HELLO_WOLF_LANDMARK_POINT_2D_H_ #define HELLO_WOLF_LANDMARK_POINT_2D_H_
#include "base/landmark/landmark_base.h" #include "core/landmark/landmark_base.h"
namespace wolf namespace wolf
{ {
......
...@@ -162,7 +162,7 @@ Eigen::Vector2s ProcessorRangeBearing::rect(Scalar range, Scalar bearing) const ...@@ -162,7 +162,7 @@ Eigen::Vector2s ProcessorRangeBearing::rect(Scalar range, Scalar bearing) const
} /* namespace wolf */ } /* namespace wolf */
// Register in the SensorFactory // Register in the SensorFactory
#include "base/processor/processor_factory.h" #include "core/processor/processor_factory.h"
namespace wolf namespace wolf
{ {
WOLF_REGISTER_PROCESSOR("RANGE BEARING", ProcessorRangeBearing) WOLF_REGISTER_PROCESSOR("RANGE BEARING", ProcessorRangeBearing)
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
#ifndef HELLO_WOLF_PROCESSOR_RANGE_BEARING_H_ #ifndef HELLO_WOLF_PROCESSOR_RANGE_BEARING_H_
#define HELLO_WOLF_PROCESSOR_RANGE_BEARING_H_ #define HELLO_WOLF_PROCESSOR_RANGE_BEARING_H_
#include "base/processor/processor_base.h" #include "core/processor/processor_base.h"
#include "sensor_range_bearing.h" #include "sensor_range_bearing.h"
#include "Eigen/Geometry" #include "Eigen/Geometry"
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
*/ */
#include "sensor_range_bearing.h" #include "sensor_range_bearing.h"
#include "base/state_block/state_angle.h" #include "core/state_block/state_angle.h"
namespace wolf namespace wolf
{ {
...@@ -45,7 +45,7 @@ SensorBasePtr SensorRangeBearing::create(const std::string& _unique_name, // ...@@ -45,7 +45,7 @@ SensorBasePtr SensorRangeBearing::create(const std::string& _unique_name, //
} /* namespace wolf */ } /* namespace wolf */
// Register in the SensorFactory // Register in the SensorFactory
#include "base/sensor/sensor_factory.h" #include "core/sensor/sensor_factory.h"
namespace wolf namespace wolf
{ {
WOLF_REGISTER_SENSOR("RANGE BEARING", SensorRangeBearing) WOLF_REGISTER_SENSOR("RANGE BEARING", SensorRangeBearing)
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
#ifndef HELLO_WOLF_SENSOR_RANGE_BEARING_H_ #ifndef HELLO_WOLF_SENSOR_RANGE_BEARING_H_
#define HELLO_WOLF_SENSOR_RANGE_BEARING_H_ #define HELLO_WOLF_SENSOR_RANGE_BEARING_H_
#include "base/sensor/sensor_base.h" #include "core/sensor/sensor_base.h"
namespace wolf namespace wolf
{ {
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
#include <vector> #include <vector>
//pipol tracker //pipol tracker
#include "base/association/association_solver.h" #include "core/association/association_solver.h"
namespace wolf namespace wolf
{ {
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
#include <algorithm> //find() #include <algorithm> //find()
//pipol tracker //pipol tracker
#include "base/association/matrix.h" #include "core/association/matrix.h"
//constants //constants
const double PROB_ZERO_ = 1e-3; const double PROB_ZERO_ = 1e-3;
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
#include <vector> #include <vector>
//matrix class //matrix class
#include "base/association/matrix.h" #include "core/association/matrix.h"
namespace wolf namespace wolf
{ {
......
...@@ -9,9 +9,9 @@ ...@@ -9,9 +9,9 @@
//#include <memory> //#include <memory>
//pipol tracker //pipol tracker
#include "base/association/matrix.h" #include "core/association/matrix.h"
#include "base/association/association_solver.h" #include "core/association/association_solver.h"
#include "base/association/association_node.h" #include "core/association/association_node.h"
#include <map> #include <map>
namespace wolf namespace wolf
......
...@@ -8,9 +8,9 @@ class FeatureBase; ...@@ -8,9 +8,9 @@ class FeatureBase;
} }
//Wolf includes //Wolf includes
#include "base/common/wolf.h" #include "core/common/wolf.h"
#include "base/common/node_base.h" #include "core/common/node_base.h"
#include "base/common/time_stamp.h" #include "core/common/time_stamp.h"
//std includes //std includes
...@@ -109,10 +109,10 @@ class CaptureBase : public NodeBase, public std::enable_shared_from_this<Capture ...@@ -109,10 +109,10 @@ class CaptureBase : public NodeBase, public std::enable_shared_from_this<Capture
} }
#include "base/sensor/sensor_base.h" #include "core/sensor/sensor_base.h"
#include "base/frame/frame_base.h" #include "core/frame/frame_base.h"
#include "base/feature/feature_base.h" #include "core/feature/feature_base.h"
#include "base/state_block/state_block.h" #include "core/state_block/state_block.h"
namespace wolf{ namespace wolf{
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
#ifndef _WOLF_CAPTURE_BUFFER_H_ #ifndef _WOLF_CAPTURE_BUFFER_H_
#define _WOLF_CAPTURE_BUFFER_H_ #define _WOLF_CAPTURE_BUFFER_H_
#include "base/common/wolf.h" #include "core/common/wolf.h"
#include "base/common/time_stamp.h" #include "core/common/time_stamp.h"
#include <list> #include <list>
#include <algorithm> #include <algorithm>
......
...@@ -9,8 +9,8 @@ ...@@ -9,8 +9,8 @@
#define SRC_CAPTURE_MOTION_H_ #define SRC_CAPTURE_MOTION_H_
// Wolf includes // Wolf includes
#include "base/capture/capture_base.h" #include "core/capture/capture_base.h"
#include "base/processor/motion_buffer.h" #include "core/processor/motion_buffer.h"
// STL includes // STL includes
#include <list> #include <list>
......
...@@ -8,9 +8,9 @@ ...@@ -8,9 +8,9 @@
#ifndef CAPTURE_ODOM_2D_H_ #ifndef CAPTURE_ODOM_2D_H_
#define CAPTURE_ODOM_2D_H_ #define CAPTURE_ODOM_2D_H_
#include "base/capture/capture_motion.h" #include "core/capture/capture_motion.h"
#include "base/math/rotations.h" #include "core/math/rotations.h"
namespace wolf namespace wolf
{ {
......
...@@ -8,9 +8,9 @@ ...@@ -8,9 +8,9 @@
#ifndef CAPTURE_ODOM_3D_H_ #ifndef CAPTURE_ODOM_3D_H_
#define CAPTURE_ODOM_3D_H_ #define CAPTURE_ODOM_3D_H_
#include "base/capture/capture_motion.h" #include "core/capture/capture_motion.h"
#include "base/math/rotations.h" #include "core/math/rotations.h"
namespace wolf namespace wolf
{ {
......
...@@ -2,10 +2,10 @@ ...@@ -2,10 +2,10 @@
#define CAPTURE_POSE_H_ #define CAPTURE_POSE_H_
//Wolf includes //Wolf includes
#include "base/capture/capture_base.h" #include "core/capture/capture_base.h"
#include "base/factor/factor_pose_2D.h" #include "core/factor/factor_pose_2D.h"
#include "base/factor/factor_pose_3D.h" #include "core/factor/factor_pose_3D.h"
#include "base/feature/feature_pose.h" #include "core/feature/feature_pose.h"
//std includes //std includes
// //
......
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