Skip to content

Commit 01faf0b

Browse files
author
AleksandrPanov
committed
prepare remove diamond tutorial
1 parent 563fad3 commit 01faf0b

18 files changed

+7
-10
lines changed

modules/aruco/samples/calibrate_camera.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include <opencv2/calib3d.hpp>
55
#include <opencv2/highgui.hpp>
66
#include <opencv2/imgproc.hpp>
7-
#include <opencv2/objdetect.hpp>
7+
#include <opencv2/objdetect/aruco_detector.hpp>
88
#include "aruco_samples_utility.hpp"
99

1010
using namespace std;

modules/aruco/samples/calibrate_camera_charuco.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include <opencv2/calib3d.hpp>
44
#include <opencv2/highgui.hpp>
55
#include <opencv2/imgproc.hpp>
6-
#include <opencv2/objdetect.hpp>
6+
#include <opencv2/objdetect/charuco_detector.hpp>
77
#include "aruco_samples_utility.hpp"
88

99
using namespace std;

modules/aruco/samples/detect_diamonds.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
#include <opencv2/highgui.hpp>
2-
#include <opencv2/aruco/charuco.hpp>
32
#include <vector>
43
#include <iostream>
5-
#include <opencv2/objdetect/aruco_detector.hpp>
64
#include <opencv2/objdetect/charuco_detector.hpp>
75
#include "aruco_samples_utility.hpp"
86

@@ -27,7 +25,6 @@ const char* keys =
2725
"{v | | Input from video file, if ommited, input comes from camera }"
2826
"{ci | 0 | Camera id if input doesnt come from video (-v) }"
2927
"{dp | | File of marker detector parameters }"
30-
"{rs | | Apply refind strategy }"
3128
"{refine | | Corner refinement: CORNER_REFINE_NONE=0, CORNER_REFINE_SUBPIX=1,"
3229
"CORNER_REFINE_CONTOUR=2, CORNER_REFINE_APRILTAG=3}";
3330
}

modules/aruco/tutorials/aruco_calibration/aruco_calibration.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Calibration with ArUco and ChArUco {#tutorial_aruco_calibration}
22
==============================
33

4-
@prev_tutorial{tutorial_charuco_diamond_detection}
4+
@prev_tutorial{tutorial_charuco_diamond_detection1}
55
@next_tutorial{tutorial_aruco_faq}
66

77
The ArUco module can also be used to calibrate a camera. Camera calibration consists in obtaining the

modules/aruco/tutorials/charuco_detection/charuco_detection.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Detection of ChArUco Boards {#tutorial_charuco_detection1}
22
==============================
33

44
@prev_tutorial{tutorial_aruco_board_detection}
5-
@next_tutorial{tutorial_charuco_diamond_detection}
5+
@next_tutorial{tutorial_charuco_diamond_detection1}
66

77
ArUco markers and boards are very useful due to their fast detection and their versatility.
88
However, one of the problems of ArUco markers is that the accuracy of their corner positions is not too high,
@@ -232,7 +232,7 @@ A full working example is included in the `detect_board_charuco.cpp` inside the
232232
The samples `detect_board_charuco.cpp` now take input via commandline via the `cv::CommandLineParser`. For this file the example
233233
parameters will look like:
234234
@code{.cpp}
235-
-w=5 -h=7 -sl=0.04 -ml=0.02 -d=10 -dp="_path_/detector_params.yml"
235+
-w=5 -h=7 -sl=0.04 -ml=0.02 -d=10
236236
-v=/path_to_aruco_tutorials/charuco_detection/images/choriginal.jpg
237237
-c=/path_to_aruco_samples/tutorial_camera_charuco.yml
238238
@endcode
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

modules/aruco/tutorials/charuco_diamond_detection/charuco_diamond_detection.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Detection of Diamond Markers {#tutorial_charuco_diamond_detection}
1+
Detection of Diamond Markers {#tutorial_charuco_diamond_detection1}
22
==============================
33

44
@prev_tutorial{tutorial_charuco_detection1}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

modules/aruco/tutorials/table_of_content_aruco.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ and without artifacts.
4040

4141
Basic detection using ChArUco corners
4242

43-
- @subpage tutorial_charuco_diamond_detection
43+
- @subpage tutorial_charuco_diamond_detection1
4444

4545
*Compatibility:* \> OpenCV 3.0
4646

0 commit comments

Comments
 (0)