ACloudViewer  3.9.4
A Modern Library for 3D Data Processing
euclidean_transform.h
Go to the documentation of this file.
1 // ----------------------------------------------------------------------------
2 // - CloudViewer: www.cloudViewer.org -
3 // ----------------------------------------------------------------------------
4 // Copyright (c) 2018-2024 www.cloudViewer.org
5 // SPDX-License-Identifier: MIT
6 // ----------------------------------------------------------------------------
7 
8 #pragma once
9 
11 #include "util/alignment.h"
12 
13 namespace colmap {
14 
15 // N-D Euclidean transform estimator from corresponding point pairs in the
16 // source and destination coordinate systems.
17 //
18 // This algorithm is based on the following paper:
19 //
20 // S. Umeyama. Least-Squares Estimation of Transformation Parameters
21 // Between Two Point Patterns. IEEE Transactions on Pattern Analysis and
22 // Machine Intelligence, Volume 13 Issue 4, Page 376-380, 1991.
23 // http://www.stanford.edu/class/cs273/refs/umeyama.pdf
24 //
25 // and uses the Eigen implementation.
26 template <int kDim>
28 
29 } // namespace colmap