Skip to content

Commit 6b648cd

Browse files
author
AleksandrPanov
committed
fixes
1 parent ebf5b3f commit 6b648cd

File tree

6 files changed

+10
-7
lines changed

6 files changed

+10
-7
lines changed

modules/aruco/include/opencv2/aruco.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// This file is part of OpenCV project.
22
// It is subject to the license terms in the LICENSE file found in the top-level directory
33
// of this distribution and at http://opencv.org/license.html
4-
#ifndef __OPENCV_ARUCO_HPP__
5-
#define __OPENCV_ARUCO_HPP__
4+
#ifndef OPENCV_ARUCO_HPP
5+
#define OPENCV_ARUCO_HPP
66

77
#include "opencv2/objdetect/aruco_detector.hpp"
88
#include "opencv2/aruco/aruco_calib.hpp"

modules/aruco/include/opencv2/aruco/aruco_calib.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// This file is part of OpenCV project.
22
// It is subject to the license terms in the LICENSE file found in the top-level directory
33
// of this distribution and at http://opencv.org/license.html
4-
#ifndef __OPENCV_ARUCO_CALIB_POSE_HPP__
5-
#define __OPENCV_ARUCO_CALIB_POSE_HPP__
4+
#ifndef OPENCV_ARUCO_CALIB_POSE_HPP
5+
#define OPENCV_ARUCO_CALIB_POSE_HPP
66
#include <opencv2/objdetect/aruco_board.hpp>
77

88
namespace cv {

modules/aruco/include/opencv2/aruco/charuco.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// This file is part of OpenCV project.
22
// It is subject to the license terms in the LICENSE file found in the top-level directory
33
// of this distribution and at http://opencv.org/license.html
4-
#ifndef __OPENCV_CHARUCO_HPP__
5-
#define __OPENCV_CHARUCO_HPP__
4+
#ifndef OPENCV_CHARUCO_HPP
5+
#define OPENCV_CHARUCO_HPP
66

77
#include <opencv2/core.hpp>
88
#include <vector>

modules/aruco/src/aruco.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
// It is subject to the license terms in the LICENSE file found in the top-level directory
33
// of this distribution and at http://opencv.org/license.html
44

5+
#include "precomp.hpp"
56
#include "opencv2/aruco.hpp"
7+
#include <opencv2/calib3d.hpp>
68

79
namespace cv {
810
namespace aruco {

modules/aruco/src/aruco_calib.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// of this distribution and at http://opencv.org/license.html
44

55
#include <opencv2/aruco/aruco_calib.hpp>
6+
#include <opencv2/calib3d.hpp>
67

78
namespace cv {
89
namespace aruco {

modules/aruco/src/charuco.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
// of this distribution and at http://opencv.org/license.html
44

55
#include "precomp.hpp"
6+
#include <opencv2/calib3d.hpp>
67
#include "opencv2/aruco/charuco.hpp"
7-
#include <opencv2/core.hpp>
88
#include <opencv2/imgproc.hpp>
99

1010
namespace cv {

0 commit comments

Comments
 (0)