From b5422580456ddcea951aa216ff179ecd65b5a477 Mon Sep 17 00:00:00 2001 From: Marlon Date: Sun, 3 Mar 2024 20:24:28 +0100 Subject: [PATCH] Fixed the missing dependencies, now builds --- include/detect/uv_led_detect_adaptive.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/detect/uv_led_detect_adaptive.cpp b/include/detect/uv_led_detect_adaptive.cpp index 923fce6..e26c0c7 100644 --- a/include/detect/uv_led_detect_adaptive.cpp +++ b/include/detect/uv_led_detect_adaptive.cpp @@ -12,6 +12,7 @@ namespace fs = std::filesystem; + struct PointComparator { bool operator() (const cv::Point& a, const cv::Point& b) const { return (a.x < b.x) || (a.x == b.x && a.y < b.y);