Skip to content

Commit 5af8624

Browse files
committed
Merge pull request #2767 from vpisarev:3d_light
2 parents b4459e1 + 18f0bd2 commit 5af8624

File tree

110 files changed

+110
-193
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+110
-193
lines changed

modules/aruco/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
set(the_description "ArUco Marker Detection")
2-
ocv_define_module(aruco opencv_core opencv_imgproc opencv_calib3d WRAP python java objc)
2+
ocv_define_module(aruco opencv_core opencv_imgproc opencv_3d opencv_calib WRAP python java objc)

modules/aruco/samples/calibrate_camera.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ the use of this software, even if advised of the possibility of such damage.
3838

3939

4040
#include <opencv2/highgui.hpp>
41-
#include <opencv2/calib3d.hpp>
41+
#include <opencv2/3d.hpp>
42+
#include <opencv2/calib.hpp>
4243
#include <opencv2/aruco.hpp>
4344
#include <opencv2/imgproc.hpp>
4445
#include <vector>

modules/aruco/samples/calibrate_camera_charuco.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ the use of this software, even if advised of the possibility of such damage.
3838

3939

4040
#include <opencv2/highgui.hpp>
41-
#include <opencv2/calib3d.hpp>
41+
#include <opencv2/3d.hpp>
42+
#include <opencv2/calib.hpp>
4243
#include <opencv2/aruco/charuco.hpp>
4344
#include <opencv2/imgproc.hpp>
4445
#include <vector>

modules/aruco/src/aruco.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ the use of this software, even if advised of the possibility of such damage.
4040
#include "opencv2/aruco.hpp"
4141
#include <opencv2/core.hpp>
4242
#include <opencv2/imgproc.hpp>
43+
#include <opencv2/3d.hpp>
44+
#include <opencv2/calib.hpp>
4345

4446
#include "apriltag_quad_thresh.hpp"
4547
#include "zarray.hpp"

modules/aruco/src/charuco.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ the use of this software, even if advised of the possibility of such damage.
4040
#include "opencv2/aruco/charuco.hpp"
4141
#include <opencv2/core.hpp>
4242
#include <opencv2/imgproc.hpp>
43+
#include <opencv2/calib.hpp>
4344

4445

4546
namespace cv {

modules/aruco/src/precomp.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
#define __OPENCV_CCALIB_PRECOMP__
4444

4545
#include <opencv2/core.hpp>
46-
#include <opencv2/calib3d.hpp>
46+
#include <opencv2/3d.hpp>
4747
#include <vector>
4848

4949
#endif

modules/aruco/test/test_precomp.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
#include "opencv2/ts.hpp"
88
#include "opencv2/imgproc.hpp"
9-
#include "opencv2/calib3d.hpp"
9+
#include "opencv2/3d.hpp"
1010
#include "opencv2/aruco.hpp"
1111
#include <opencv2/aruco/charuco.hpp>
1212

modules/bgsegm/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
set(the_description "Background Segmentation Algorithms")
2-
ocv_define_module(bgsegm opencv_core opencv_imgproc opencv_video opencv_calib3d WRAP python java objc)
2+
ocv_define_module(bgsegm opencv_core opencv_imgproc opencv_video opencv_3d WRAP python java objc)

modules/bgsegm/src/bgfg_gsoc.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
*/
5151

5252
#include "precomp.hpp"
53-
#include <opencv2/calib3d.hpp>
53+
#include <opencv2/3d.hpp>
5454
#include <iostream>
5555
#include "opencv2/core/cvdef.h"
5656

modules/ccalib/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
set(the_description "Custom Calibration Pattern")
2-
ocv_define_module(ccalib opencv_core opencv_imgproc opencv_calib3d opencv_features2d opencv_highgui WRAP python)
2+
ocv_define_module(ccalib opencv_core opencv_imgproc opencv_3d opencv_calib opencv_features2d opencv_highgui WRAP python)

0 commit comments

Comments
 (0)