From aff8269a585a1b41202ceadb07c9f323ada7bcb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Bujnovsk=C3=BD?= <2659269+miakh@users.noreply.github.com> Date: Fri, 28 Aug 2026 11:25:42 +0200 Subject: [PATCH] Remove unused OpenCV calibration dependency --- CMakeLists.txt | 2 +- input_data.hpp | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 19cdc6a..479d97d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -213,7 +213,7 @@ endif() if (NOT WIN32 AND NOT APPLE) set(CMAKE_CUDA_COMPILER "${CUDA_TOOLKIT_ROOT_DIR}/bin/nvcc") endif() -set(OpenCV_LIBS opencv_core opencv_imgproc opencv_highgui opencv_calib3d) +set(OpenCV_LIBS opencv_core opencv_imgproc opencv_highgui) set(GSPLAT_LIBS gsplat_cpu) if((GPU_RUNTIME STREQUAL "CUDA") OR (GPU_RUNTIME STREQUAL "HIP")) diff --git a/input_data.hpp b/input_data.hpp index 9ddefe6..eea4363 100644 --- a/input_data.hpp +++ b/input_data.hpp @@ -5,7 +5,6 @@ #include #include #include -#include #include enum CameraType { Perspective }; @@ -79,4 +78,4 @@ struct InputData{ InputData inputDataFromX(const std::string &projectRoot); std::string findMaskPath(const std::string &imagePath, const std::string &projectRoot); -#endif \ No newline at end of file +#endif