-
Notifications
You must be signed in to change notification settings - Fork 814
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
Fix/gnc optimizer #1035
Fix/gnc optimizer #1035
Conversation
lucacarlone
commented
Jan 13, 2022
•
edited
Loading
edited
- fixed corner cases in which mu = 0 or weights become negative
- improved verbosity handling
- added clone function to support PoseToPointFactor
…rPoseToPointFactor
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.
Two small comments but otherwise LGTM!
@@ -190,13 +193,14 @@ Point3 triangulateNonlinear(const std::vector<Pose3>& poses, | |||
template<class CAMERA> | |||
Point3 triangulateNonlinear( | |||
const CameraSet<CAMERA>& cameras, | |||
const typename CAMERA::MeasurementVector& measurements, const Point3& initialEstimate) { | |||
const typename CAMERA::MeasurementVector& measurements, const Point3& initialEstimate, | |||
const SharedNoiseModel& model = nullptr) { |
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.
Even these top-level methods can take the same default maybe?
@lucacarlone I am merging this in! |
yay! thanks @varunagrawal ! |