mirror of
https://github.com/opencv/opencv_contrib.git
synced 2025-10-20 21:40:49 +08:00
Merge pull request #696 from mshabunin:fix-aruco-python-refine
This commit is contained in:
@@ -374,7 +374,7 @@ CV_EXPORTS_W int estimatePoseBoard(InputArrayOfArrays corners, InputArray ids, P
|
|||||||
*/
|
*/
|
||||||
CV_EXPORTS_W void refineDetectedMarkers(
|
CV_EXPORTS_W void refineDetectedMarkers(
|
||||||
InputArray image, Ptr<Board> &board, InputOutputArrayOfArrays detectedCorners,
|
InputArray image, Ptr<Board> &board, InputOutputArrayOfArrays detectedCorners,
|
||||||
InputOutputArray detectedIds, InputOutputArray rejectedCorners,
|
InputOutputArray detectedIds, InputOutputArrayOfArrays rejectedCorners,
|
||||||
InputArray cameraMatrix = noArray(), InputArray distCoeffs = noArray(),
|
InputArray cameraMatrix = noArray(), InputArray distCoeffs = noArray(),
|
||||||
float minRepDistance = 10.f, float errorCorrectionRate = 3.f, bool checkAllOrders = true,
|
float minRepDistance = 10.f, float errorCorrectionRate = 3.f, bool checkAllOrders = true,
|
||||||
OutputArray recoveredIdxs = noArray(), const Ptr<DetectorParameters> ¶meters = DetectorParameters::create());
|
OutputArray recoveredIdxs = noArray(), const Ptr<DetectorParameters> ¶meters = DetectorParameters::create());
|
||||||
|
@@ -1099,7 +1099,7 @@ static void _projectUndetectedMarkers(Ptr<Board> &_board, InputOutputArrayOfArra
|
|||||||
*/
|
*/
|
||||||
void refineDetectedMarkers(InputArray _image, Ptr<Board> &_board,
|
void refineDetectedMarkers(InputArray _image, Ptr<Board> &_board,
|
||||||
InputOutputArrayOfArrays _detectedCorners, InputOutputArray _detectedIds,
|
InputOutputArrayOfArrays _detectedCorners, InputOutputArray _detectedIds,
|
||||||
InputOutputArray _rejectedCorners, InputArray _cameraMatrix,
|
InputOutputArrayOfArrays _rejectedCorners, InputArray _cameraMatrix,
|
||||||
InputArray _distCoeffs, float minRepDistance, float errorCorrectionRate,
|
InputArray _distCoeffs, float minRepDistance, float errorCorrectionRate,
|
||||||
bool checkAllOrders, OutputArray _recoveredIdxs,
|
bool checkAllOrders, OutputArray _recoveredIdxs,
|
||||||
const Ptr<DetectorParameters> &_params) {
|
const Ptr<DetectorParameters> &_params) {
|
||||||
|
Reference in New Issue
Block a user