REVIEW 1 major objections 6 minor 42 references
Making Rotation Averaging Fast and Robust with Anisotropic Coordinate Descent
T0 review · 1 major / 6 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read The paper claims that anisotropic rotation averaging reduces to a sequence of single-rotation projections onto $\mathrm{SO}(3)$, making uncertainty-aware averaging as fast as isotropic solvers.
desk verdict The core ACD solver is a solid contribution, but the paper has a false mathematical claim and a robust-variant result that appears to be copy-pasted rather than measured. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is the symmetric block matrix $N$, whose $(i,j)$ block is $N_{ij}=M_{ij}\tilde{R}_{ij}$ with $M_{ij}=\tfrac12\operatorname{tr}(H_{ij})I - H_{ij}$; the two-view Hessian $H_{ij}$ is converted into a direction-dependent weight that penalizes rotations more in directions where the relative pose estimate is less certain. The key operation is the coordinate update $R_k \leftarrow \operatorname{proj}_{\mathrm{SO}(3)}(N_k^\top R)$, where $N_k$ is the $k$-th block column of $N$ and $R$ stacks all current absolute rotations, and $\operatorname{proj}_{\mathrm{SO}(3)}$ is the SVD projection $U\operatorname{diag}(1,1,\det(UV^\top))V^\top$. This update is the exact closed-form solution of the one-rotation anisotropic subproblem, and the paper proves that the analogous isotropic update keeps iterates inside $\mathrm{SO}(3)^n$; shuffling the update order at each sweep gives a stochastic coordinate descent that converges to a stationary point with a large basin of attraction.
What would settle it
Run ACD on a real SfM dataset with every Hessian replaced by the identity matrix, so the anisotropic weights carry no information. If the resulting accuracy stays clearly above RCD's, the gain comes from somewhere other than the Hessian-derived weights; if it drops to RCD's level, the dependence on Hessian quality is confirmed. A second check is to increasingly perturb the Hessian eigenvectors and verify that ACD's error reduction over RCD degrades roughly as in the paper's Figure 2.
Extended reading notes
Core claim
The paper's central claim is that minimizing the anisotropic chordal distance $\min_{R\in\mathrm{SO}(3)^n} -\langle N, RR^\top\rangle$, where the block matrix $N$ encodes two-view Hessian uncertainties, can be solved by block coordinate descent with the update $R_k \leftarrow \operatorname{proj}_{\mathrm{SO}(3)}(N_k^\top R)$. Starting from the isotropic block-coordinate subproblem [13,29], the paper shows that enforcing $R_k\in\mathrm{SO}(3)$ makes the semidefinite constraint redundant, so the costly convex relaxation of [27] is unnecessary for practical optimization. The authors prove that the projected update is exactly the minimizer of the anisotropic objective with respect to one rotation, and that in the isotropic setting the same update reproduces the iterates of rotation coordinate descent [29] with fewer matrix operations. On real SfM and ETH3D data, ACD initialized with zeros reports lower average angular error and a higher share of sub-degree-accurate cameras than the isotropic solvers RCD and Shonan, and roughly matches the accuracy of the certifiable SDP solver while being orders of magnitude faster. The paper does not claim a global optimality certificate for ACD; it claims a high success rate from diverse initializations plus speed.
Load-bearing premise
The two-view Hessian matrices are trusted as the uncertainty model, so if those Hessians are noisy or uninformative, the anisotropic objective may not improve over isotropic rotation averaging and the reported accuracy gains could vanish.
Editorial extensions
If this is right
- Anisotropic rotation averaging can scale to hundreds of cameras without an SDP solver; the reported runtime is orders of magnitude below cSO(3) and comparable to RCD and Shonan.
- Because the update is a small SVD on a 3×3 matrix, the solver needs no minimum spanning tree or chaining initialization—zero initialization suffices on the tested datasets.
- The share of cameras with angular error below 1 degree rises on most tested datasets, which should translate into fewer grossly misplaced cameras in downstream global structure-from-motion.
- The same solver can be wrapped in iteratively reweighted least squares or in the anisotropic robust refinement of [41]; the resulting ACDAIRLS reports the best average accuracy on the tested SfM datasets.
Reading between the lines
- The same block-coordinate projection argument likely extends to synchronization problems over other matrix Lie groups with a known projection, such as similarity transforms or $\mathrm{SE}(3)$, although the paper does not develop this.
- ACD's advantage over isotropic averaging is only as good as the Hessians it consumes; coupling it with learned or robustified uncertainty estimates could push the gains further than the two-view bundle-adjustment Hessians used here.
- The per-block updates are independent given the current R, so a parallel or GPU implementation could make the runtime scale even better than the reported sequential timing suggests.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes Anisotropic Coordinate Descent (ACD), a block-coordinate descent solver for anisotropic rotation averaging, where per-edge uncertainties from two-view Hessians enter an anisotropic chordal distance objective. The key step is a reformulation of the per-block SDP subproblem (7) into the simple closed-form update R_k = project_SO(3)(N_k^T R) in Eq. (10). The authors also integrate ACD into robust pipelines: ACD IRLS (IRLS initialized with ACD) and ACDAIRLS (anisotropic robust refinement). Experiments on SfM and ETH3D datasets compare ACD against RCD, Shonan, cSO(3), L1IRLS, and Zhang et al. The central derivation leading to Eq. (10) is correct, and the non-robust experiments are extensive and generally favor ACD. However, the reported ACD IRLS results are bit-identical to L1IRLS in all tables, which is unexplained and undermines the claim that ACD initialization benefits robust refinement.
Significance. If the claims hold, ACD is a valuable practical contribution: it is the first dedicated solver for anisotropic chordal distances that avoids the scalability limitations of the SDP-based cSO(3), while providing state-of-the-art accuracy on public structure-from-motion datasets. The derivation of the projection update is clean and self-contained, the comparisons use external baselines, and the synthetic perturbation study in Figure 2 provides a reasonable check on the method's dependence on Hessian quality. The main obstacle is the unexplained exact equality between ACD IRLS and L1IRLS in Tables 3 and 4; resolving it is necessary before the robust-initialization contribution can be accepted.
major comments (1)
- [§4.3, Tables 3–4] The ACD IRLS results are exactly identical to L1IRLS for every dataset and every metric (e.g., LU Sphinx: Angl. err. 0.41 vs. 0.41, AUC@1 98.57 vs. 98.57; boulders: 0.11 vs. 0.11, 100.00 vs. 100.00). ACD IRLS is defined as IRLS from [5] applied to an ACD initialization, while L1IRLS is initialized with MST (Section 4.2). The paper does not explain this exact equality. If the IRLS stage is initialization-insensitive, that should be stated and supported, but this would be hard to reconcile with the ablation in Table 5, where different ACD initializations converge to different optima on several datasets. The more plausible reading is that the ACD initialization is not actually consumed by the implemented IRLS routine, or that the ACD IRLS numbers were produced by the MST-initialized baseline. This is load-bearing for the robust claim in the abstract and conclusions, and must be clarified or corrected.
minor comments (6)
- [Equation (4), §3.1] The claim that A^T(AA^T)^{1/2}^dagger is always in SO(3) is false: for A = diag(1,1,-1), AA^T = I, so the expression equals A, which has determinant -1. The SVD argument yields VU^T, which is a reflection when det(A) < 0. The statement should be restricted to matrices with positive determinant, or the argument reworked. This does not invalidate the ACD update in Eq. (10), but the proof as written is incorrect.
- [Algorithm 1] The pseudocode writes R_k^{(t+1)} <- project_SO(3)(N_k^T R^{(t)}) for each k, but in a sequential coordinate descent the most recently updated blocks should be used immediately. The notation should distinguish the current iterate from the previous one, or state that the update uses the current values of all other blocks.
- [§4.2, Tables 1–2] The text says ACD is run 10 times on each dataset due to shuffling, but Tables 1 and 2 report a single number per metric. Please state whether the reported value is the mean, median, or best over the 10 runs, and consider including variance or intervals.
- [§4.3] The sentence 'ACD does not require hyperparameter tuning' is slightly overstated, since ACDAIRLS uses the Geman-McClure scale tau = 5 degrees. The paper should clarify that this value is fixed following the author's implementation of [5] and is not tuned per dataset, rather than claiming there is no hyperparameter at all.
- [§4.4, Figure 3] The runtime comparison would be more informative with a description of the hardware, the number of repeats, and whether the reported runtimes are medians or means. Also, the runtime curves stop at around 160 cameras; a larger-scale experiment would strengthen the scalability claim.
- [§4.2] The real-data accuracy gains rely on the quality of the two-view Hessians used as uncertainty estimates. The synthetic perturbation study in Figure 2 partially addresses this, but a real-data sensitivity analysis (e.g., comparing results with and without Hessian marginalization, or with perturbed Hessians) would help quantify the effect of Hessian estimation errors.
Circularity Check
No significant circularity: the ACD update is derived from the anisotropic objective and validated against external baselines; two correctness concerns are noted but are not circular.
full rationale
The paper's central derivation is self-contained. Equation (10), R_k* = project_SO(3)(N_k^T R), is derived by direct manipulation of objective (1): fixing all rotations except R_k turns the sub-problem into maximizing <N_k^T R, R_k> over SO(3), and the paper explicitly notes that this 'exactly coincides with minimizing (1) w.r.t. R_k for a fixed k.' No fitted parameter, learned quantity, or cited theorem is needed for this step. The evaluation is against external baselines (RCD [29], Shonan [11], L1IRLS [5], Zhang [41]) using ground-truth rotation errors, so the reported accuracy gains are not encoded in the method. The anisotropic objective (1) and the stronger SDP (6) are inherited from the authors' prior work [27], but this is a premise rather than a circular derivation: the solver's correctness does not depend on [27]'s SDP tightness findings, and the paper's ablation (Table 5) tests ACD against the SDP solver cSO(3) [27] as an external comparison. Two non-circular concerns are flagged. First, the proof of Eq. (4) is mathematically wrong: for A = diag(1,1,-1), A^T(AA^T)^{1/2 dagger} has determinant -1 and is not in SO(3), so the claimed invariance of RCD iterates is not established by that argument. This is a correctness risk in the motivation, not a circularity. Second, Tables 3-4 report ACD IRLS results exactly equal to L1IRLS on every dataset, which the paper acknowledges ('the solution accuracy of ACD IRLS is identical to L1IRLS [5]'); this suggests the ACD initialization may not change the IRLS trajectory, but the paper does not claim an improvement for ACD IRLS, and the novel robust contribution is ACDAIRLS. These issues lower confidence in some claims but do not make the derivation circular.
Assumptions & free parameters
free parameters (1)
- Geman-McClure kernel scale tau =
5 degrees
assumptions (3)
- domain assumption The anisotropic chordal distance objective (1) is the maximum likelihood objective under anisotropic Langevin noise.
- domain assumption Hessians from two-view bundle adjustment are accurate approximations of the inverse covariance of relative rotations.
- standard math Block coordinate descent on SO(3)^n converges to a stationary point.
Cite this review
Pith. "Pith review of Making Rotation Averaging Fast and Robust with Anisotropic Coordinate Descent." pith.science (2026). https://pith.science/paper/HWJOI7LQ
@misc{pith2026250601940,
author = {Pith},
title = {Pith review of: Making Rotation Averaging Fast and Robust with Anisotropic Coordinate Descent},
year = {2026},
howpublished = {\url{https://pith.science/paper/HWJOI7LQ}},
note = {Machine review of arXiv:2506.01940}
}
read the original abstract
Anisotropic rotation averaging has recently been explored as a natural extension of respective isotropic methods. In the anisotropic formulation, uncertainties of the estimated relative rotations -- obtained via standard two-view optimization -- are propagated to the optimization of absolute rotations. The resulting semidefinite relaxations are able to recover global minima but scale poorly with the problem size. Local methods are fast and also admit robust estimation but are sensitive to initialization. They usually employ minimum spanning trees and therefore suffer from drift accumulation and can get trapped in poor local minima. In this paper, we attempt to bridge the gap between optimality, robustness and efficiency of anisotropic rotation averaging. We analyze a family of block coordinate descent methods initially proposed to optimize the standard chordal distances, and derive a much simpler formulation and an anisotropic extension obtaining a fast general solver. We integrate this solver into the extended anisotropic large-scale robust rotation averaging pipeline. The resulting algorithm achieves state-of-the-art performance on public structure-from-motion datasets. Project page: https://ylochman.github.io/acd
Figures
Reference graph
Works this paper leans on
-
[5]
Efficient and robust large-scale ro- tation averaging
Avishek Chatterjee and Venu Madhav Govindu. Efficient and robust large-scale ro- tation averaging. InProceedings of the IEEE international conference on computer vision, pages 521–528, 2013
work page 2013
-
[1]
Global motion estimation from point matches
Mica Arie-Nachimson, Shahar Z Kovalsky, Ira Kemelmacher-Shlizerman, Amit Singer, and Ronen Basri. Global motion estimation from point matches. In2012 Second inter- national conference on 3D imaging, modeling, processing, visualization & transmis- sion, pages 81–88. IEEE, 2012
work page 2012
-
[2]
Nicolas Boumal. A riemannian low-rank method for optimization over semidefinite matrices with block-diagonal constraints.arXiv preprint arXiv:1506.00575, 2015
arXiv 2015
-
[3]
Fennell Burns, David Carlson, Emilie Haynsworth, and Thomas Markham. General- ized inverse formulas using the schur complement.SIAM Journal on Applied Mathe- matics, 26(2):254–259, 1974
work page 1974
-
[4]
Luca Carlone and Giuseppe C Calafiore. Convex relaxations for pose graph optimiza- tion with outliers.IEEE Robotics and Automation Letters, 3(2):1160–1167, 2018
work page 2018
-
[6]
Robust relative rotation averaging
Avishek Chatterjee and Venu Madhav Govindu. Robust relative rotation averaging. IEEE transactions on pattern analysis and machine intelligence, 40(4):958–972, 2017
work page 2017
-
[7]
Hybrid rotation averaging: A fast and robust ro- tation averaging approach
Yu Chen, Ji Zhao, and Laurent Kneip. Hybrid rotation averaging: A fast and robust ro- tation averaging approach. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 10358–10367, 2021
work page 2021
-
[8]
Wide-sense estimation on the special orthogonal group.Commun
Alessandro Chiuso, Giorgio Picci, and Stefano Soatto. Wide-sense estimation on the special orthogonal group.Commun. Inf. Syst., 8(3):185–200, 2008
work page 2008
Show all 42 references
-
[9]
Drift detection and removal for sequential structure from motion algorithms.IEEE Transactions on Pattern Analysis and Machine Intelligence, 26(10):1249–1259, 2004
Kurt Cornelis, Frank Verbiest, and Luc Van Gool. Drift detection and removal for sequential structure from motion algorithms.IEEE Transactions on Pattern Analysis and Machine Intelligence, 26(10):1249–1259, 2004
2004
-
[10]
Hsfm: Hybrid structure-from- motion
Hainan Cui, Xiang Gao, Shuhan Shen, and Zhanyi Hu. Hsfm: Hybrid structure-from- motion. InProceedings of the IEEE conference on computer vision and pattern recog- nition, pages 1212–1221, 2017
2017
-
[11]
Rosen, Jing Wu, Robert E
Frank Dellaert, David M. Rosen, Jing Wu, Robert E. Mahony, and Luca Car- lone. Shonan rotation averaging: Global optimality by surfing so(p) n.CoRR, abs/2008.02737, 2020. URLhttps://arxiv.org/abs/2008.02737
2008 arXiv
-
[12]
Performance guarantees for spectral initialization in rotation averaging and pose-graph slam
Kevin J Doherty, David M Rosen, and John J Leonard. Performance guarantees for spectral initialization in rotation averaging and pose-graph slam. In2022 International Conference on Robotics and Automation (ICRA), pages 5608–5614. IEEE, 2022. 12LOCHMAN ET AL.: FAST AND ROBUST R...
2022
-
[13]
Rotation averaging and strong duality
Anders Eriksson, Carl Olsson, Fredrik Kahl, and Tat-Jun Chin. Rotation averaging and strong duality. InProceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pages 127–135, 2018
2018
-
[14]
Rotation averaging with the chordal distance: Global minimizers and strong duality.IEEE Transactions on Pattern Analysis and Machine Intelligence, 43(1):256–268, 2021
Anders Eriksson, Carl Olsson, Fredrik Kahl, and Tat-Jun Chin. Rotation averaging with the chordal distance: Global minimizers and strong duality.IEEE Transactions on Pattern Analysis and Machine Intelligence, 43(1):256–268, 2021. doi: 10.1109/ TPAMI.2019.2930051
2021
-
[15]
Random sample consensus: a paradigm for model fitting with applications to image analysis and automated cartography.Commu- nications of the ACM, 24(6):381–395, 1981
Martin A Fischler and Robert C Bolles. Random sample consensus: a paradigm for model fitting with applications to image analysis and automated cartography.Commu- nications of the ACM, 24(6):381–395, 1981
1981
-
[16]
Simultaneous multiple rotation averaging using lagrangian duality
Johan Fredriksson and Carl Olsson. Simultaneous multiple rotation averaging using lagrangian duality. In Kyoung Mu Lee, Yasuyuki Matsushita, James M. Rehg, and Zhanyi Hu, editors,Computer Vision – ACCV 2012, pages 245–258, Berlin, Heidel- berg, 2012. Springer Berlin Heidelberg...
2012
-
[17]
Lie-algebraic averaging for globally consistent motion es- timation
Venu Madhav Govindu. Lie-algebraic averaging for globally consistent motion es- timation. InProceedings of the 2004 IEEE Computer Society Conference on Com- puter Vision and Pattern Recognition, 2004. CVPR 2004., volume 1, pages I–684– I–691, Los Alamitos, CA, USA, Jul 2004. I...
2004 doi
-
[18]
Robustness in motion averaging
Venu Madhav Govindu. Robustness in motion averaging. InAsian conference on computer vision, pages 457–466. Springer, 2006
2006
-
[19]
Rotation averaging
Richard Hartley, Jochen Trumpf, Yuchao Dai, and Hongdong Li. Rotation averaging. International Journal of Computer Vision, 103(3):267 – 305, 2013. ISSN 09205691
2013
-
[20]
Hara: A hierarchical approach for robust rotation av- eraging
Seong Hun Lee and Javier Civera. Hara: A hierarchical approach for robust rotation av- eraging. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 15777–15786, 2022
2022
-
[21]
Robust rotation and translation estimation in mul- tiview reconstruction
Daniel Martinec and Tomas Pajdla. Robust rotation and translation estimation in mul- tiview reconstruction. In2007 IEEE conference on computer vision and pattern recog- nition, pages 1–8. IEEE, 2007
2007
-
[22]
Rotation averaging in a split second: A primal-dual method and a closed-form for cycle graphs
Gabriel Moreira, Manuel Marques, and Joao Paulo Costeira. Rotation averaging in a split second: A primal-dual method and a closed-form for cycle graphs. InProceedings of the IEEE/CVF International Conference on Computer Vision, pages 5452–5460, 2021
2021
-
[23]
Unordered feature tracking made fast and easy, 2012
Pierre Moulon and Pascal Monasse. Unordered feature tracking made fast and easy, 2012
2012
-
[24]
Openmvg: Open multiple view geometry, 2017
Pierre Moulon, Pascal Monasse, Romuald Perrot, and Renaud Marlet. Openmvg: Open multiple view geometry, 2017
2017
-
[25]
An efficient solution to the five-point relative pose problem.IEEE Transactions on Pattern Analysis and Machine Intelligence, 26:756–770, 2004
David Nistér. An efficient solution to the five-point relative pose problem.IEEE Transactions on Pattern Analysis and Machine Intelligence, 26:756–770, 2004. URL https://api.semanticscholar.org/CorpusID:886598. LOCHMAN ET AL.: FAST AND ROBUST ROTA TION A VERAGING WITH ACD13
2004
-
[26]
Stable structure from motion for unordered image col- lections
Carl Olsson and Olof Enqvist. Stable structure from motion for unordered image col- lections. In Anders Heyden and Fredrik Kahl, editors,Image Analysis, pages 524–535, Berlin, Heidelberg, 2011. Springer Berlin Heidelberg. ISBN 978-3-642-21227-7
2011
-
[27]
Certifiably optimal anisotropic rotation averaging.arXiv preprint arXiv:2503.07353, 2025
Carl Olsson, Yaroslava Lochman, Johan Malmport, and Christopher Zach. Certifiably optimal anisotropic rotation averaging.arXiv preprint arXiv:2503.07353, 2025
2025 arXiv
-
[28]
Schönberger
Linfei Pan, Dániel Baráth, Marc Pollefeys, and Johannes L. Schönberger. Global structure-from-motion revisited, 2024. URLhttps://arxiv.org/abs/2407. 20219
2024
-
[29]
Rotation coordinate descent for fast globally optimal rotation averaging
Alvaro Parra, Shin-Fang Chng, Tat-Jun Chin, Anders Eriksson, and Ian Reid. Rotation coordinate descent for fast globally optimal rotation averaging. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 4298–4307, June 2021
2021
-
[30]
Block coordinate descent on smooth manifolds: Con- vergence theory and twenty-one examples.arXiv preprint arXiv:2305.14744, 2023
Liangzu Peng and René Vidal. Block coordinate descent on smooth manifolds: Con- vergence theory and twenty-one examples.arXiv preprint arXiv:2305.14744, 2023
2023 arXiv
-
[31]
Se-sync: A certifiably correct algorithm for synchronization over the special euclidean group.The International Journal of Robotics Research, 38(2-3):95–125, 2019
David M Rosen, Luca Carlone, Afonso S Bandeira, and John J Leonard. Se-sync: A certifiably correct algorithm for synchronization over the special euclidean group.The International Journal of Robotics Research, 38(2-3):95–125, 2019
2019
-
[32]
A multi-view stereo benchmark with high-resolution images and multi-camera videos
Thomas Schops, Johannes L Schonberger, Silvano Galliani, Torsten Sattler, Konrad Schindler, Marc Pollefeys, and Andreas Geiger. A multi-view stereo benchmark with high-resolution images and multi-camera videos. InProceedings of the IEEE confer- ence on computer vision and patt...
2017
-
[33]
Angular synchronization by eigenvectors and semidefinite programming
Amit Singer. Angular synchronization by eigenvectors and semidefinite programming. Applied and computational harmonic analysis, 30(1):20–36, 2011
2011
-
[34]
McLauchlan, Richard I
Bill Triggs, Philip F. McLauchlan, Richard I. Hartley, and Andrew W. Fitzgibbon. Bun- dle adjustment - a modern synthesis. InProceedings of the International Workshop on Vision Algorithms: Theory and Practice, ICCV ’99, page 298–372, Berlin, Heidelberg,
-
[35]
Semidefinite programming.SIAM review, 38 (1):49–95, 1996
Lieven Vandenberghe and Stephen Boyd. Semidefinite programming.SIAM review, 38 (1):49–95, 1996
1996
-
[36]
Exact and stable recovery of rotations for robust syn- chronization.Information and Inference: A Journal of the IMA, 2(2):145–193, 2013
Lanhui Wang and Amit Singer. Exact and stable recovery of rotations for robust syn- chronization.Information and Inference: A Journal of the IMA, 2(2):145–193, 2013
2013
-
[37]
On the distribution of minima in intrinsic-metric rota- tion averaging
Kyle Wilson and David Bindel. On the distribution of minima in intrinsic-metric rota- tion averaging. In2020 IEEE/CVF Conference on Computer Vision and Pattern Recog- nition (CVPR), pages 6030–6038, 2020. doi: 10.1109/CVPR42600.2020.00607
2020
-
[38]
When is rotations averaging hard? In Proceedings of ECCV 2016, October 2016
Kyle Wilson, David Bindel, and Noah Snavely. When is rotations averaging hard? In Proceedings of ECCV 2016, October 2016
2016
-
[39]
Disambiguating visual relations using loop constraints
Christopher Zach, Manfred Klopschitz, and Marc Pollefeys. Disambiguating visual relations using loop constraints. In2010 IEEE Computer Society Conference on Com- puter Vision and Pattern Recognition, pages 1426–1433. IEEE, 2010. 14LOCHMAN ET AL.: FAST AND ROBUST ROTA TION A VE...
2010
-
[40]
Springer Science & Business Media, 2006
Fuzhen Zhang.The Schur complement and its applications, volume 4. Springer Science & Business Media, 2006
2006
-
[41]
Revisiting rotation averaging: Un- certainties and robust losses
Ganlin Zhang, Viktor Larsson, and Daniel Barath. Revisiting rotation averaging: Un- certainties and robust losses. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 17215–17224, 2023. LOCHMAN ET AL.: FAST AND ROBUST ROTA TION A VERAGING...
2023
-
[1999]
ISBN 3540679731
Springer-Verlag. ISBN 3540679731
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.