Skip to content

Commit

Permalink
Fixing compilation errord raulmur#2
Browse files Browse the repository at this point in the history
  • Loading branch information
vazk committed Aug 3, 2019
1 parent a81f7b9 commit 505be1a
Show file tree
Hide file tree
Showing 11 changed files with 23 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/ORBextractor.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@

#include <vector>
#include <list>
#include <opencv/cv.h>
//#include <opencv/cv.h>
#include <opencv2/opencv.hpp>


namespace ORB_SLAM2
Expand Down
1 change: 1 addition & 0 deletions include/PnPsolver.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
#define PNPSOLVER_H

#include <opencv2/core/core.hpp>
#include <opencv2/core/types_c.h>
#include "MapPoint.h"
#include "Frame.h"

Expand Down
1 change: 1 addition & 0 deletions include/Tracking.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@

#include<opencv2/core/core.hpp>
#include<opencv2/features2d/features2d.hpp>
#include<opencv2/core/types_c.h>

#include"Viewer.h"
#include"FrameDrawer.h"
Expand Down
1 change: 1 addition & 0 deletions src/FrameDrawer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@

#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include<opencv2/imgproc/types_c.h>

#include<mutex>

Expand Down
3 changes: 3 additions & 0 deletions src/LocalMapping.cc
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@
#include "Optimizer.h"

#include<mutex>
#include<unistd.h>
#include<stdio.h>
#include<stdlib.h>

namespace ORB_SLAM2
{
Expand Down
3 changes: 3 additions & 0 deletions src/LoopClosing.cc
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@

#include<mutex>
#include<thread>
#include<unistd.h>
#include<stdio.h>
#include<stdlib.h>


namespace ORB_SLAM2
Expand Down
1 change: 1 addition & 0 deletions src/PnPsolver.cc
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
#include <vector>
#include <cmath>
#include <opencv2/core/core.hpp>
#include <opencv2/imgproc/types_c.h>
#include "Thirdparty/DBoW2/DUtils/Random.h"
#include <algorithm>

Expand Down
1 change: 1 addition & 0 deletions src/Sim3Solver.cc
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#include <vector>
#include <cmath>
#include <opencv2/core/core.hpp>
#include <opencv2/core/core_c.h>

#include "KeyFrame.h"
#include "ORBmatcher.h"
Expand Down
3 changes: 3 additions & 0 deletions src/System.cc
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@
#include <thread>
#include <pangolin/pangolin.h>
#include <iomanip>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>

namespace ORB_SLAM2
{
Expand Down
4 changes: 4 additions & 0 deletions src/Tracking.cc
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@

#include<opencv2/core/core.hpp>
#include<opencv2/features2d/features2d.hpp>
#include<opencv2/imgproc/types_c.h>

#include"ORBmatcher.h"
#include"FrameDrawer.h"
Expand All @@ -36,6 +37,9 @@
#include<iostream>

#include<mutex>
#include<unistd.h>
#include<stdio.h>
#include<stdlib.h>


using namespace std;
Expand Down
3 changes: 3 additions & 0 deletions src/Viewer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
#include <pangolin/pangolin.h>

#include <mutex>
#include<unistd.h>
#include<stdio.h>
#include<stdlib.h>

namespace ORB_SLAM2
{
Expand Down

0 comments on commit 505be1a

Please sign in to comment.