Skip to content

ylochman/acd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ACD: Fast and Robust Rotation Averaging with Anisotropic Coordinate Descent

[project page] | [paper]

A fast solver for anisotropic rotation averaging where the uncertainties of optimized two-view relative rotations are incorporated into the optimization of absolute rotations.

The code is available in:

Algorithm / pseudo-code

Input:  Rrel # nxnx3x3, relative rotations
             # s.t. Rrel[i,j] ≈ R[j] @ R[i].T
        H # nxnx3x3, corresponding Hessians
Output: R # nx3x3, absolute rotations

# Construct cost matrix
Nzeros(n,n,3,3)
for (i,j) in observed_pairs:
    N[i,j] ← (tr(H[i,j])/2 * I_3H[i,j]) @ Rrel[i,j]

# Run optimization
Rinitialize_rotations(n) # nx3x3
while not converged:
    for k in shuffle({1,...,n}):
        R[k] ← project_on_SO3(sum(bmm(N[k].transpose(2,3), R), axis=1))

Citation

If you found this work useful, consider citing:

@article{lochman2025fast,
    author    = {Lochman, Yaroslava and Olsson, Carl and Zach, Christopher},
    title     = {Fast and Robust Rotation Averaging with Anisotropic Coordinate Descent},
    journal   = {arXiv preprint arXiv:2506.01940},
    year      = {2025},
}

The anisotropic formulation used in this work was proposed in:

@article{olsson2025certifiably,
    author    = {Olsson, Carl and Lochman, Yaroslava and Malmport, Johan and Zach, Christopher},
    title     = {Certifiably Optimal Anisotropic Rotation Averaging},
    journal   = {arXiv preprint arXiv:2503.07353},
    year      = {2025},
}

About

Fast and Robust Rotation Averaging with Anisotropic Coordinate Descent (BMVC 2025)

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors