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

Organize includes

parent c6f9858b
No related branches found
No related tags found
1 merge request!208Vision utils
//std //std
#include <iostream> #include <iostream>
#include "../capture_pose.h" #include "processor_tracker_landmark_image.h"
//Wolf //Wolf
#include "wolf.h" #include "wolf.h"
#include "problem.h" #include "problem.h"
#include "state_block.h" #include "state_block.h"
#include "processor_odom_3D.h" #include "processor_odom_3D.h"
#include "sensor_odom_3D.h" #include "sensor_odom_3D.h"
#include "sensor_camera.h"
#include "capture_image.h"
#include "capture_pose.h"
#include "ceres_wrapper/ceres_manager.h" #include "ceres_wrapper/ceres_manager.h"
// Vision utils includes // Vision utils includes
#include <vision_utils.h> #include <vision_utils.h>
#include "../processor_tracker_landmark_image.h"
#include <sensors.h> #include <sensors.h>
#include <common_class/buffer.h> #include <common_class/buffer.h>
#include <common_class/frame.h> #include <common_class/frame.h>
......
#include "processor_tracker_landmark_image.h" #include "processor_tracker_landmark_image.h"
#include "landmark_corner_2D.h" #include "capture_image.h"
#include "landmark_AHP.h"
#include "feature_point_image.h"
#include "constraint_corner_2D.h"
#include "constraint_AHP.h" #include "constraint_AHP.h"
#include "sensor_camera.h" #include "feature_base.h"
#include "pinhole_tools.h" #include "feature_point_image.h"
#include "trajectory_base.h" #include "frame_base.h"
#include "logging.h"
#include "map_base.h" #include "map_base.h"
#include "pinhole_tools.h"
#include "problem.h"
#include "sensor_camera.h"
#include "state_block.h"
#include "time_stamp.h"
// vision_utils // vision_utils
#include <detectors.h> #include <detectors.h>
......
...@@ -2,24 +2,26 @@ ...@@ -2,24 +2,26 @@
#define PROCESSOR_TRACKER_LANDMARK_IMAGE_H #define PROCESSOR_TRACKER_LANDMARK_IMAGE_H
// Wolf includes // Wolf includes
#include "sensor_camera.h"
#include "capture_image.h"
#include "feature_point_image.h"
#include "state_block.h"
#include "state_quaternion.h"
#include "processor_tracker_landmark.h"
#include "landmark_AHP.h" #include "landmark_AHP.h"
#include "constraint_AHP.h" #include "landmark_match.h"
#include "processor_params_image.h" #include "processor_params_image.h"
#include "processor_tracker_landmark.h"
#include "wolf.h"
#include <algorithms/activesearch/alg_activesearch.h> #include <algorithms/activesearch/alg_activesearch.h>
#include <descriptors/descriptor_base.h> #include <descriptors/descriptor_base.h>
#include <detectors/detector_base.h> #include <detectors/detector_base.h>
#include <matchers/matcher_base.h> #include <matchers/matcher_base.h>
#include <opencv2/core/mat.hpp>
#include <opencv2/core/mat.inl.hpp>
#include <opencv2/core/types.hpp>
// General includes #include <list>
#include <cmath> #include <memory>
#include <complex> // std::complex, std::norm #include <string>
#include <vector>
namespace wolf { 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