move log to api dir

This commit is contained in:
2021-06-16 09:44:31 +02:00
parent 6b6c098529
commit d5013c69a8
7 changed files with 6 additions and 6 deletions

View File

@ -22,7 +22,7 @@
#include <opencv2/highgui.hpp> #include <opencv2/highgui.hpp>
#include <opencv2/imgproc.hpp> #include <opencv2/imgproc.hpp>
#include <opencv2/bgsegm.hpp> #include <opencv2/bgsegm.hpp>
#include "log.h" #include "uvosunwrap/log.h"
bool createMask(const cv::Mat& in, cv::Mat& mask, const cv::Mat& bg) bool createMask(const cv::Mat& in, cv::Mat& mask, const cv::Mat& bg)
{ {

View File

@ -21,7 +21,7 @@
#include <opencv2/features2d.hpp> #include <opencv2/features2d.hpp>
#include <opencv2/highgui.hpp> #include <opencv2/highgui.hpp>
#include "uvosunwrap/harris.h" #include "uvosunwrap/harris.h"
#include "log.h" #include "uvosunwrap/log.h"
#include "matutils.h" #include "matutils.h"
#include "drawing.h" #include "drawing.h"

View File

@ -17,7 +17,7 @@
* Boston, MA 02110-1301, USA. * Boston, MA 02110-1301, USA.
*/ */
#include "log.h" #include "uvosunwrap/log.h"
Log::Log(Level type) Log::Log(Level type)
{ {

View File

@ -29,7 +29,7 @@
#include "uvosunwrap/unwrap.h" #include "uvosunwrap/unwrap.h"
#include "uvosunwrap/bgremoval.h" #include "uvosunwrap/bgremoval.h"
#include "uvosunwrap/normalize.h" #include "uvosunwrap/normalize.h"
#include "log.h" #include "uvosunwrap/log.h"
#include "uvosunwrap/charuco.h" #include "uvosunwrap/charuco.h"
#include "uvosunwrap/harris.h" #include "uvosunwrap/harris.h"

View File

@ -22,7 +22,7 @@
#include <iostream> #include <iostream>
#include <math.h> #include <math.h>
#include <assert.h> #include <assert.h>
#include "log.h" #include "uvosunwrap/log.h"
void sanityCheckMap(cv::Mat& mat, const float min, const float max, float minValue, float maxValue) void sanityCheckMap(cv::Mat& mat, const float min, const float max, float minValue, float maxValue)
{ {

View File

@ -30,7 +30,7 @@
#include "matutils.h" #include "matutils.h"
#include "drawing.h" #include "drawing.h"
#include "log.h" #include "uvosunwrap/log.h"
static void sortIntoRemapMaps(const std::vector<DetectedPoint>& points, cv::Mat& xMat, cv::Mat& yMat, cv::Point2i& topLeftCoordinate) static void sortIntoRemapMaps(const std::vector<DetectedPoint>& points, cv::Mat& xMat, cv::Mat& yMat, cv::Point2i& topLeftCoordinate)
{ {