ba_demo_ceres icon indicating copy to clipboard operation
ba_demo_ceres copied to clipboard

Bundle adjustment demo using Ceres Solver, with customized cost function and local parameterization on SE(3)

Results 2 ba_demo_ceres issues
Sort by recently updated
recently updated
newest added

https://github.com/izhengfan/ba_demo_ceres/blob/c89b27f6c99b207ae3bf99e8fd992290a253da7a/parametersse3.cpp#L28 above line should be: ``` J_se3.block(0,0) = - J_cam * quaterd.toRotationMatrix() * skew(point); ``` or ``` J_se3.block(0,0) = - J_cam * skew(quaterd * point); ```

Fixed the jacobian for the lie parameterization. Is not the identity for the rotation block it is the rotation itself.