NikolausDemmel / rootba

Square Root Bundle Adjustment for Large-Scale Reconstruction
BSD 3-Clause "New" or "Revised" License
279 stars 38 forks source link

Question #3

Closed melhashash closed 2 years ago

melhashash commented 2 years ago

Hi Nikolaus,

Thanks for open-sourcing the code.

Would you please explain how rootba method is different from DENSE_QR solver in Ceres? I presume this one avoids the computation of the Hessian and not scalable for large problems, similar to rootba.

NikolausDemmel commented 2 years ago

Hi Mostafa,

thanks for your interest.

DENSE_QR in Ceres is a very different solver and unsuitable for all but the smallest BA problems, but there are similarities. Some points:

melhashash commented 2 years ago

Thanks so much, Nikolaus, for the detailed explanation.