Fixed interactive calibration tool deps.

This commit is contained in:
Alexander Smorkalov
2026-09-07 12:12:48 +03:00
parent f8ef5fd4c6
commit d7659dc4e1
6 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
set(DEPS opencv_core opencv_imgproc opencv_features opencv_highgui opencv_3d opencv_calib opencv_videoio opencv_objdetect) set(DEPS opencv_core opencv_imgproc opencv_features opencv_highgui opencv_geometry opencv_calib opencv_videoio opencv_objdetect)
file(GLOB SRCS *.cpp) file(GLOB SRCS *.cpp)
ocv_add_application(opencv_interactive-calibration MODULES ${DEPS} SRCS ${SRCS}) ocv_add_application(opencv_interactive-calibration MODULES ${DEPS} SRCS ${SRCS})
@@ -8,7 +8,7 @@
#include <cmath> #include <cmath>
#include <ctime> #include <ctime>
#include <opencv2/3d.hpp> #include <opencv2/geometry.hpp>
#include <opencv2/calib.hpp> #include <opencv2/calib.hpp>
#include <opencv2/imgproc.hpp> #include <opencv2/imgproc.hpp>
#include <opencv2/imgcodecs.hpp> #include <opencv2/imgcodecs.hpp>
@@ -5,7 +5,7 @@
#include "frameProcessor.hpp" #include "frameProcessor.hpp"
#include "rotationConverters.hpp" #include "rotationConverters.hpp"
#include <opencv2/3d.hpp> #include <opencv2/geometry.hpp>
#include <opencv2/calib.hpp> #include <opencv2/calib.hpp>
#include <opencv2/imgproc.hpp> #include <opencv2/imgproc.hpp>
#include <opencv2/highgui.hpp> #include <opencv2/highgui.hpp>
+1 -1
View File
@@ -3,7 +3,7 @@
// of this distribution and at http://opencv.org/license.html. // of this distribution and at http://opencv.org/license.html.
#include <opencv2/core.hpp> #include <opencv2/core.hpp>
#include <opencv2/3d.hpp> #include <opencv2/geometry.hpp>
#include <opencv2/calib.hpp> #include <opencv2/calib.hpp>
#include <opencv2/cvconfig.h> #include <opencv2/cvconfig.h>
#include <opencv2/highgui.hpp> #include <opencv2/highgui.hpp>
@@ -6,7 +6,7 @@
#include <cmath> #include <cmath>
#include <opencv2/3d.hpp> #include <opencv2/geometry.hpp>
#include <opencv2/calib.hpp> #include <opencv2/calib.hpp>
#include <opencv2/core.hpp> #include <opencv2/core.hpp>
+1 -1
View File
@@ -120,7 +120,7 @@ class Builder:
"-DWITH_ITT=OFF", "-DWITH_ITT=OFF",
"-DBUILD_ZLIB=ON", "-DBUILD_ZLIB=ON",
"-DBUILD_opencv_apps=OFF", "-DBUILD_opencv_apps=OFF",
"-DBUILD_opencv_3d=ON", "-DBUILD_opencv_geometry=ON",
"-DBUILD_opencv_dnn=ON", "-DBUILD_opencv_dnn=ON",
"-DBUILD_opencv_features=ON", "-DBUILD_opencv_features=ON",
"-DBUILD_opencv_flann=ON", # No bindings provided. This module is used as a dependency for other modules. "-DBUILD_opencv_flann=ON", # No bindings provided. This module is used as a dependency for other modules.