diff options
author | Martin Miller | 2018-01-28 10:58:23 -0500 |
---|---|---|
committer | Martin Miller | 2018-01-28 10:58:23 -0500 |
commit | 72faa54ddcd07972f250a53098b0ecfbd08363df (patch) | |
tree | a614c7bf69f8a1c049918bc659ef3c7035832611 /src | |
parent | 7b8821a18a2105df4c0b1eedfbd36f1f7984428c (diff) | |
download | refslam-72faa54ddcd07972f250a53098b0ecfbd08363df.zip refslam-72faa54ddcd07972f250a53098b0ecfbd08363df.tar.gz |
Change core.hpp to opencv.hpp so that I can compile.
If you are using the hpc then you might need to revert this.
Diffstat (limited to 'src')
-rw-r--r-- | src/camera.h | 2 | ||||
-rw-r--r-- | src/feature.h | 2 | ||||
-rw-r--r-- | src/types.h | 2 | ||||
-rw-r--r-- | src/vision.h | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/camera.h b/src/camera.h index 51e4e8a..c366d24 100644 --- a/src/camera.h +++ b/src/camera.h @@ -1,6 +1,6 @@ #ifndef camera_INC #define camera_INC -#include <opencv2/core.hpp> +#include <opencv2/opencv.hpp> #include <Eigen/Dense> #include <iostream> #include <opencv2/highgui/highgui.hpp> diff --git a/src/feature.h b/src/feature.h index eade6e7..7cf38aa 100644 --- a/src/feature.h +++ b/src/feature.h @@ -1,6 +1,6 @@ #ifndef feature_INC #define feature_INC -#include <opencv2/core.hpp> +#include <opencv2/opencv.hpp> #include <Eigen/Dense> #include <iostream> diff --git a/src/types.h b/src/types.h index 93e8822..29271d4 100644 --- a/src/types.h +++ b/src/types.h @@ -1,7 +1,7 @@ #ifndef types_INC #define types_INC -#include <opencv2/core.hpp> +#include <opencv2/opencv.hpp> #include <Eigen/Dense> #include <exception> #define MAXLINE 8192 diff --git a/src/vision.h b/src/vision.h index 1bbc366..90227cc 100644 --- a/src/vision.h +++ b/src/vision.h @@ -1,6 +1,6 @@ #ifndef vision_INC #define vision_INC -#include <opencv2/core.hpp> +#include <opencv2/opencv.hpp> #include <Eigen/Dense> #include <iostream> #include <opencv2/highgui/highgui.hpp> |