From 33c7030135325ed2b5876de304693a4267bf2ea4 Mon Sep 17 00:00:00 2001 From: smeng9 <38666763+smeng9@users.noreply.github.com> Date: Tue, 11 Apr 2023 10:20:09 +0800 Subject: [PATCH] Fix flipped image in documentation --- modules/aruco/include/opencv2/aruco/aruco_calib.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/aruco/include/opencv2/aruco/aruco_calib.hpp b/modules/aruco/include/opencv2/aruco/aruco_calib.hpp index fc86dab8439..a1973b680fe 100644 --- a/modules/aruco/include/opencv2/aruco/aruco_calib.hpp +++ b/modules/aruco/include/opencv2/aruco/aruco_calib.hpp @@ -26,7 +26,7 @@ enum PatternPositionType { * (markerLength/2, -markerLength/2, 0), (-markerLength/2, -markerLength/2, 0). * * These pattern points define this coordinate system: - * ![Image with axes drawn](tutorials/images/singlemarkersaxes.jpg) + * ![Image with axes drawn](tutorials/images/singlemarkersaxes2.jpg) */ ARUCO_CCW_CENTER, /** @brief The marker coordinate system is centered on the top-left corner of the marker. @@ -36,7 +36,7 @@ enum PatternPositionType { * (markerLength, markerLength, 0), (0, markerLength, 0). * * These pattern points define this coordinate system: - * ![Image with axes drawn](tutorials/images/singlemarkersaxes2.jpg) + * ![Image with axes drawn](tutorials/images/singlemarkersaxes.jpg) * * These pattern dots are convenient to use with a chessboard/ChArUco board. */