Hi!
I'm implementing bundle adjustment with Ceres.
Usually I have >500 points on the same image and on every iteration for all these points residuals are computed.
I would like to precompute projection matrices for every image after every iteration and after that use them for fast computation of residuals.
For the same image on the same iteration a projection matrix is the same for all points so I'm expecting to have a speed improvement.
I add an IterationCallback and it works perfectly. However I have problems with access to current values of optimized parameters from the callback.
I tried to use ceres::Problem::GetParameterBlocks() but it seems the parameters are not updated.
So my question is how to access to current values of optimized parameters from the IterationCallback.
Thanks in advance
Alexander