forked from ethz-asl/kalibr
-
Notifications
You must be signed in to change notification settings - Fork 1
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
Rolling Shutter Camera Calibration #6
Merged
Merged
Conversation
This file contains 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
_ portable_binary_iarchive _ portable_binary_oarchive _ portable_binary_archive
properly keep track of previous successful solution to update _p_J and _J
_ The camera_dv exposes a scalar expression (ScalarExpressionNodeKeypointTime) that expresses the capture time of a keypoint taking the changing shutter_dv into account. _ Remove aslam_backend CameraDesignVariable and move to aslam_backend_cv together with the NodeKeypointTime scalar expression
Error term that applies a design-variable (shutter) depending, variable, covariance term for adaptive error term standardization.
ReprojectionErrors are in aslam_cv_error_terms
…gnVariable It is a pure duplicate of the already existing CameraDesignVariable. As it is used by the (also disabled) NCameraSystemDesignVariableContainer, I do not delete the files.
/// to the camera design variable | ||
backend::ScalarExpression keypointTime(const aslam::Time & imageStamp, const Eigen::VectorXd & y); | ||
|
||
// get the temporal offset of the a given keypoint y |
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.
remove 'the'
Contains several fixes and actually compiles on my 1604 machine - cool. Is this GTG? |
Sure |
This was referenced Jul 18, 2016
Closed
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.
Integrations a module to fully calibrate the intrinsics, distortion coefficients and line delay of rolling shutter cameras.
Besides the python implementation it includes the following changes and fixes/improvements:
_ disable obsolete CameraGeometryDesignVariableContainer in favor of CameraDesignVariable
_ remove duplicate definitions of ReprojectionError from aslam_cv_backend
_ CameraDesignVariable exposes a ScalarExpression representing the time at which a keypoint was observed
_ exports ScalarExpressionNodeKeypointTime to python
_ restore CovarainceReprojectionError which enables state-depending error term standardization
_ CovarianceReprojectionError::observationTime() returned frame_time + 2* time offset
_ Fix an issue in the DogLeg- and Base-TrustRegionPolicy that prevented the correct calculation of the trust region size and resulted in bad/no convergence
For various reasons, this PR already contains #4 and #5