Skip to content

Commit 14f16b1

Browse files
committed
Merge pull request #696 from mshabunin:fix-aruco-python-refine
2 parents 3ff3cd8 + fd6355e commit 14f16b1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/aruco/include/opencv2/aruco.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ CV_EXPORTS_W int estimatePoseBoard(InputArrayOfArrays corners, InputArray ids, P
374374
*/
375375
CV_EXPORTS_W void refineDetectedMarkers(
376376
InputArray image, Ptr<Board> &board, InputOutputArrayOfArrays detectedCorners,
377-
InputOutputArray detectedIds, InputOutputArray rejectedCorners,
377+
InputOutputArray detectedIds, InputOutputArrayOfArrays rejectedCorners,
378378
InputArray cameraMatrix = noArray(), InputArray distCoeffs = noArray(),
379379
float minRepDistance = 10.f, float errorCorrectionRate = 3.f, bool checkAllOrders = true,
380380
OutputArray recoveredIdxs = noArray(), const Ptr<DetectorParameters> &parameters = DetectorParameters::create());

modules/aruco/src/aruco.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1099,7 +1099,7 @@ static void _projectUndetectedMarkers(Ptr<Board> &_board, InputOutputArrayOfArra
10991099
*/
11001100
void refineDetectedMarkers(InputArray _image, Ptr<Board> &_board,
11011101
InputOutputArrayOfArrays _detectedCorners, InputOutputArray _detectedIds,
1102-
InputOutputArray _rejectedCorners, InputArray _cameraMatrix,
1102+
InputOutputArrayOfArrays _rejectedCorners, InputArray _cameraMatrix,
11031103
InputArray _distCoeffs, float minRepDistance, float errorCorrectionRate,
11041104
bool checkAllOrders, OutputArray _recoveredIdxs,
11051105
const Ptr<DetectorParameters> &_params) {

0 commit comments

Comments
 (0)