From 28d029c15863ada0d0db3d41b64c00e9887399ab Mon Sep 17 00:00:00 2001 From: lackhole Date: Wed, 22 May 2024 20:01:54 +0900 Subject: [PATCH] Replace non-ascii character --- modules/core/include/opencv2/core.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/include/opencv2/core.hpp b/modules/core/include/opencv2/core.hpp index f6372ac03e..b58a3a6ccb 100644 --- a/modules/core/include/opencv2/core.hpp +++ b/modules/core/include/opencv2/core.hpp @@ -1807,7 +1807,7 @@ CV_EXPORTS_W void transpose(InputArray src, OutputArray dst); * @note Input should be continuous single-channel matrix. * @param src input array. * @param order a permutation of [0,1,..,N-1] where N is the number of axes of src. - * The i’th axis of dst will correspond to the axis numbered order[i] of the input. + * The i'th axis of dst will correspond to the axis numbered order[i] of the input. * @param dst output array of the same type as src. */ CV_EXPORTS_W void transposeND(InputArray src, const std::vector& order, OutputArray dst);