You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The new high resolution cameras of the SSL league have a negative distortion. Support was added to set the distortion to a negative value manually, but the optimizer for the automatic calibration can not optimize for negative values right now.
@joydeep-b Your input in how to solve this would be very helpful.
The text was updated successfully, but these errors were encountered:
There is some trivial hookups to the slider to the optimizer that needs to be done.
The optimizer sets constraints on the distortion parameter, which need to be removed
The cubic solver for undistortion assumes a positive distortion coefficient. Without this assumption, the general form of the cubic solver is MUCH more involved.
Alternatively, it could be a good time to ditch the custom implementation of LM with numeric differentiation and adopt Ceres-Solver (http://www.ceres-solver.org/) for optimization, using automatic differentiation. We will not need the inverse formulae, then, just the forward propagation: SE(3) transform -> pinhole projection -> radial distortion .
The new high resolution cameras of the SSL league have a negative distortion. Support was added to set the distortion to a negative value manually, but the optimizer for the automatic calibration can not optimize for negative values right now.
@joydeep-b Your input in how to solve this would be very helpful.
The text was updated successfully, but these errors were encountered: