// ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- // The MIT License (MIT) // // Copyright (c) 2018 www.open3d.org // // 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. // ---------------------------------------------------------------------------- #pragma once #include namespace open3d { namespace odometry { /// \class OdometryOption /// /// Class that defines Odometry options. class OdometryOption { public: /// \brief Parameterized Constructor. /// /// \param iteration_number_per_pyramid_level Number of iterations per level /// of pyramid. /// \param max_depth_diff Maximum depth difference to be considered as /// correspondence. /// \param min_depth Minimum depth below which pixel values /// are ignored. /// \param max_depth Maximum depth above which pixel values are /// ignored. OdometryOption( const std::vector &iteration_number_per_pyramid_level = {20, 10, 5} /* {smaller image size to original image size} */, double max_depth_diff = 0.03, double min_depth = 0.0, double max_depth = 4.0) : iteration_number_per_pyramid_level_( iteration_number_per_pyramid_level), max_depth_diff_(max_depth_diff), min_depth_(min_depth), max_depth_(max_depth) {} ~OdometryOption() {} public: /// Iteration number per image pyramid level, typically larger image in the /// pyramid have lower interation number to reduce computation time. std::vector iteration_number_per_pyramid_level_; /// Maximum depth difference to be considered as correspondence. In depth /// image domain, if two aligned pixels have a depth difference less than /// specified value, they are considered as a correspondence. Larger value /// induce more aggressive search, but it is prone to unstable result. double max_depth_diff_; /// Pixels that has larger than specified depth values are ignored. double min_depth_; /// Pixels that has larger than specified depth values are ignored. double max_depth_; }; } // namespace odometry } // namespace open3d