/** BSD 3-Clause License This file is part of the Basalt project. https://gitlab.com/VladyslavUsenko/basalt.git Copyright (c) 2019, Vladyslav Usenko and Nikolaus Demmel. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * 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. * 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. */ #pragma once #include #include #include namespace basalt { struct VioVisualizationData { typedef std::shared_ptr Ptr; int64_t t_ns; Eigen::aligned_vector states; Eigen::aligned_vector frames; Eigen::aligned_vector points; std::vector point_ids; OpticalFlowResult::Ptr opt_flow_res; std::vector> projections; EIGEN_MAKE_ALIGNED_OPERATOR_NEW }; class VioEstimatorBase { public: typedef std::shared_ptr Ptr; VioEstimatorBase() : out_state_queue(nullptr), out_marg_queue(nullptr), out_vis_queue(nullptr) { vision_data_queue.set_capacity(10); imu_data_queue.set_capacity(300); last_processed_t_ns = 0; finished = false; } std::atomic last_processed_t_ns; std::atomic finished; tbb::concurrent_bounded_queue vision_data_queue; tbb::concurrent_bounded_queue::Ptr> imu_data_queue; tbb::concurrent_bounded_queue::Ptr>* out_state_queue = nullptr; tbb::concurrent_bounded_queue* out_marg_queue = nullptr; tbb::concurrent_bounded_queue* out_vis_queue = nullptr; virtual void initialize(int64_t t_ns, const Sophus::SE3d& T_w_i, const Eigen::Vector3d& vel_w_i, const Eigen::Vector3d& bg, const Eigen::Vector3d& ba) = 0; virtual void initialize(const Eigen::Vector3d& bg, const Eigen::Vector3d& ba) = 0; virtual void maybe_join() = 0; virtual inline void drain_input_queues() { // Input threads should abort when vio is finished, but might be stuck in // full push to full queue. So this can help to drain queues after joining // the processing thread. while (!imu_data_queue.empty()) { ImuData::Ptr d; imu_data_queue.pop(d); } while (!vision_data_queue.empty()) { OpticalFlowResult::Ptr d; vision_data_queue.pop(d); } } virtual inline void debug_finalize() {} virtual Sophus::SE3d getT_w_i_init() = 0; // Legacy functions. Should not be used in the new code. virtual void setMaxStates(size_t val) = 0; virtual void setMaxKfs(size_t val) = 0; virtual void addIMUToQueue(const ImuData::Ptr& data) = 0; virtual void addVisionToQueue(const OpticalFlowResult::Ptr& data) = 0; }; class VioEstimatorFactory { public: static VioEstimatorBase::Ptr getVioEstimator(const VioConfig& config, const Calibration& cam, const Eigen::Vector3d& g, bool use_imu, bool use_double); }; double alignSVD(const std::vector& filter_t_ns, const Eigen::aligned_vector& filter_t_w_i, const std::vector& gt_t_ns, Eigen::aligned_vector& gt_t_w_i); } // namespace basalt