BA updates - save covariances, grid size -> patch size, more config options#1101
BA updates - save covariances, grid size -> patch size, more config options#1101akshay-krishnan wants to merge 6 commits intomasterfrom
Conversation
| initial_data, graph, self._ordering_type | ||
| ) | ||
| if self._compute_pose_covariances: | ||
| try: |
There was a problem hiding this comment.
nothing wrong here, but just confused that we are taking the covariance matrices from the cameras_to_model and then set it in optimized data which is the recovered after optimization so should have those inherently?
There was a problem hiding this comment.
are you suggesting moving this to __optimize_and_recover ?
There was a problem hiding this comment.
no I am just a little confused on what this if block does
|
Just thinking if it should be called number of tracks per camera or number of measurements per camera? and I think if we have 2 cameras with less than 20 measurements after all pre-ba filtering, we shouldn't remove those tracks because those tracks might have measurements in other cameras (maybe helpful in merging ahead) |
we dont remove the tracks, we remove the camera (which removes the measurements during BA). tracks_per_camera or measurements_per_camera is the same since it is defined for a particular camera (tracks == measurements). while measurements is more accurate, tracks is a simpler name. |
Uh oh!
There was an error while loading. Please reload this page.