diff --git a/src/bgremoval.cpp b/src/bgremoval.cpp index fc154ca..bfad40c 100644 --- a/src/bgremoval.cpp +++ b/src/bgremoval.cpp @@ -22,7 +22,7 @@ #include #include #include -#include "log.h" +#include "uvosunwrap/log.h" bool createMask(const cv::Mat& in, cv::Mat& mask, const cv::Mat& bg) { diff --git a/src/harris.cpp b/src/harris.cpp index 4b21f63..31fee75 100644 --- a/src/harris.cpp +++ b/src/harris.cpp @@ -21,7 +21,7 @@ #include #include #include "uvosunwrap/harris.h" -#include "log.h" +#include "uvosunwrap/log.h" #include "matutils.h" #include "drawing.h" diff --git a/src/log.cpp b/src/log.cpp index 8d42351..118ee9d 100644 --- a/src/log.cpp +++ b/src/log.cpp @@ -17,7 +17,7 @@ * Boston, MA 02110-1301, USA. */ -#include "log.h" +#include "uvosunwrap/log.h" Log::Log(Level type) { diff --git a/src/main.cpp b/src/main.cpp index 213ee5f..4bc34df 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -29,7 +29,7 @@ #include "uvosunwrap/unwrap.h" #include "uvosunwrap/bgremoval.h" #include "uvosunwrap/normalize.h" -#include "log.h" +#include "uvosunwrap/log.h" #include "uvosunwrap/charuco.h" #include "uvosunwrap/harris.h" diff --git a/src/matutils.cpp b/src/matutils.cpp index 455b7ec..87fd937 100644 --- a/src/matutils.cpp +++ b/src/matutils.cpp @@ -22,7 +22,7 @@ #include #include #include -#include "log.h" +#include "uvosunwrap/log.h" void sanityCheckMap(cv::Mat& mat, const float min, const float max, float minValue, float maxValue) { diff --git a/src/unwrap.cpp b/src/unwrap.cpp index 056de26..c6e388c 100644 --- a/src/unwrap.cpp +++ b/src/unwrap.cpp @@ -30,7 +30,7 @@ #include "matutils.h" #include "drawing.h" -#include "log.h" +#include "uvosunwrap/log.h" static void sortIntoRemapMaps(const std::vector& points, cv::Mat& xMat, cv::Mat& yMat, cv::Point2i& topLeftCoordinate) { diff --git a/src/log.h b/src/uvosunwrap/log.h similarity index 100% rename from src/log.h rename to src/uvosunwrap/log.h