diff options
Diffstat (limited to 'src/camera.h')
-rw-r--r-- | src/camera.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/camera.h b/src/camera.h index 9cb8254..51e4e8a 100644 --- a/src/camera.h +++ b/src/camera.h @@ -1,9 +1,10 @@ #ifndef camera_INC #define camera_INC -#include <cv.h> +#include <opencv2/core.hpp> #include <Eigen/Dense> #include <iostream> #include <opencv2/highgui/highgui.hpp> +#include <opencv2/imgproc/imgproc.hpp> #include <yaml-cpp/yaml.h> #include "types.h" @@ -28,6 +29,7 @@ class Camera { public: /* ==================== LIFECYCLE ======================================= */ + EIGEN_MAKE_ALIGNED_OPERATOR_NEW Camera (const char *fin); /* constructor */ /* ==================== ACCESSORS ======================================= */ |