-
Notifications
You must be signed in to change notification settings - Fork 5.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(4.x) Merge 3.4 #3215
(4.x) Merge 3.4 #3215
Conversation
…oints Fix objPoints order in GridBoard and CharucoBoard * fix gridBoard * fix charucoBoard * add rightBottomBorder * add test_aruco_utils and code refactoring/fix tests * fix axes and add charuco dict * add axes test, remove drawAxis(), update tutorial
…Candidates * fix search for one contour in _filterTooCloseCandidates() * add regression_3192 test * add regression_2492 test
@@ -285,7 +287,8 @@ CV_EXPORTS_W void detectCharucoDiamond(InputArray image, InputArrayOfArrays mark | |||
InputArray markerIds, float squareMarkerLengthRate, | |||
OutputArrayOfArrays diamondCorners, OutputArray diamondIds, | |||
InputArray cameraMatrix = noArray(), | |||
InputArray distCoeffs = noArray()); | |||
InputArray distCoeffs = noArray(), | |||
Ptr<Dictionary> dictionary = getPredefinedDictionary(PREDEFINED_DICTIONARY_NAME(0))); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ptr<Dictionary>
@AleksandrPanov Why is not a const reference?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
const Dictionary&
does not work for python binding.
Or do you suggest const Ptr<Dictionary>&
?
@@ -678,7 +611,7 @@ TEST(Charuco, testCharucoCornersCollinear_false) | |||
} | |||
|
|||
// test that ChArUco board detection is subpixel accurate | |||
TEST(Charuco, testBoardSubpixelCoords) | |||
TEST(Charuco, DISABLED_testBoardSubpixelCoords) // FIXIT: https://github.com/opencv/opencv_contrib/pull/3213 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@AleksandrPanov Disabled this test. It is completely rewritten in 4.x branch (see #3213). Main question is "why?"
👍 |
#3174 from AleksandrPanov:fix_gridboard_objPoints
#3181 from sturkmen72:bug-fix-edge_drawing
#3186 from AleksandrPanov:fix_CORNER_REFINE_CONTOUR
#3201 from AleksandrPanov:fix_filterTooCloseCandidates
Main PR: opencv/opencv#21784
Previous "Merge 3.4": #3173