123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- /************************************************************
- *
- * Copyright (c) 2021, University of California, Los Angeles
- *
- * Authors: Kenny J. Chen, Brett T. Lopez
- * Contact: kennyjchen@ucla.edu, btlopez@ucla.edu
- *
- ***********************************************************/
- /***********************************************************************
- * BSD 3-Clause License
- *
- * Copyright (c) 2020, SMRT-AIST
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * 1. Redistributions of source code must retain the above copyright notice, this
- * list of conditions and the following disclaimer.
- *
- * 2. Redistributions in binary form must reproduce the above copyright notice,
- * this list of conditions and the following disclaimer in the documentation
- * and/or other materials provided with the distribution.
- *
- * 3. Neither the name of the copyright holder nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
- * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
- * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *************************************************************************/
- #ifndef NANO_GICP_SO3_HPP
- #define NANO_GICP_SO3_HPP
- #include <Eigen/Core>
- #include <Eigen/Geometry>
- namespace nano_gicp {
- inline Eigen::Matrix3f skew(const Eigen::Vector3f& x) {
- Eigen::Matrix3f skew = Eigen::Matrix3f::Zero();
- skew(0, 1) = -x[2];
- skew(0, 2) = x[1];
- skew(1, 0) = x[2];
- skew(1, 2) = -x[0];
- skew(2, 0) = -x[1];
- skew(2, 1) = x[0];
- return skew;
- }
- inline Eigen::Matrix3d skewd(const Eigen::Vector3d& x) {
- Eigen::Matrix3d skew = Eigen::Matrix3d::Zero();
- skew(0, 1) = -x[2];
- skew(0, 2) = x[1];
- skew(1, 0) = x[2];
- skew(1, 2) = -x[0];
- skew(2, 0) = -x[1];
- skew(2, 1) = x[0];
- return skew;
- }
- /*
- * SO3 expmap code taken from Sophus
- * https://github.com/strasdat/Sophus/blob/593db47500ea1a2de5f0e6579c86147991509c59/sophus/so3.hpp#L585
- *
- * Copyright 2011-2017 Hauke Strasdat
- * 2012-2017 Steven Lovegrove
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to
- * deal in the Software without restriction, including without limitation the
- * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
- * sell copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
- * IN THE SOFTWARE.
- */
- inline Eigen::Quaterniond so3_exp(const Eigen::Vector3d& omega) {
- double theta_sq = omega.dot(omega);
- double theta;
- double imag_factor;
- double real_factor;
- if(theta_sq < 1e-10) {
- theta = 0;
- double theta_quad = theta_sq * theta_sq;
- imag_factor = 0.5 - 1.0 / 48.0 * theta_sq + 1.0 / 3840.0 * theta_quad;
- real_factor = 1.0 - 1.0 / 8.0 * theta_sq + 1.0 / 384.0 * theta_quad;
- } else {
- theta = std::sqrt(theta_sq);
- double half_theta = 0.5 * theta;
- imag_factor = std::sin(half_theta) / theta;
- real_factor = std::cos(half_theta);
- }
- return Eigen::Quaterniond(real_factor, imag_factor * omega.x(), imag_factor * omega.y(), imag_factor * omega.z());
- }
- } // namespace nano_gicp
- #endif
|