Added CALIB_FIX_FOCAL_LENGTH to fisheye calibration#19539
Merged
alalek merged 2 commits intoopencv:masterfrom Mar 3, 2021
Merged
Added CALIB_FIX_FOCAL_LENGTH to fisheye calibration#19539alalek merged 2 commits intoopencv:masterfrom
alalek merged 2 commits intoopencv:masterfrom
Conversation
Sometimes you want to calibrate just the principal point of a camera, or just the distortion coefficients. In this case, you can pass the CALIB_FIX_FOCAL_LENGTH flag to keep Fx and Fy
6 tasks
Contributor
|
@asmorkalov, thank you! But please, click checkboxes in the PR description "I agree to contribute ..." etc., probably except for the last checkbox everything else can be "checked". 👍 |
alalek
reviewed
Feb 19, 2021
| CALIB_FIX_PRINCIPAL_POINT = 1 << 9, | ||
| CALIB_ZERO_DISPARITY = 1 << 10 | ||
| CALIB_ZERO_DISPARITY = 1 << 10, | ||
| CALIB_FIX_FOCAL_LENGTH = 1 << 11 |
Member
There was a problem hiding this comment.
Please add/extend bindings tests for constants.
There is some mess with constants with the same name and different values.
Contributor
Author
There was a problem hiding this comment.
Merged
a-sajjad72
pushed a commit
to a-sajjad72/opencv
that referenced
this pull request
Mar 30, 2023
…ngth * Added CALIB_FIX_FOCAL_LENGTH to fisheye calibration opencv#13450 Sometimes you want to calibrate just the principal point of a camera, or just the distortion coefficients. In this case, you can pass the CALIB_FIX_FOCAL_LENGTH flag to keep Fx and Fy * Added test for CALIB_FIX_FOCAL_LENGTH option in fisheye callinration.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Resolves #13450
Replaces abandoned PR #18306 and adds test
Pull Request Readiness Checklist
See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request
Patch to opencv_extra has the same branch name.