/** 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 #include #include #include #include #include #include #include #include #include #include #include #include namespace basalt { class PosesOptimization; class CamCalib { public: CamCalib(const std::string &dataset_path, const std::string &dataset_type, const std::string &aprilgrid_path, const std::string &cache_path, const std::string &cache_dataset_name, int skip_images, const std::vector &cam_types, bool show_gui = true); ~CamCalib(); void initGui(); void computeVign(); void setNumCameras(size_t n); void renderingLoop(); void computeProjections(); void detectCorners(); void initCamIntrinsics(); void initCamPoses(); void initCamExtrinsics(); void initOptimization(); void loadDataset(); void optimize(); bool optimizeWithParam(bool print_info, std::map *stats = nullptr); void saveCalib(); void drawImageOverlay(pangolin::View &v, size_t cam_id); bool hasCorners() const; void setOptIntrinsics(bool opt) { opt_intr = opt; } private: static constexpr int UI_WIDTH = 300; static constexpr size_t RANSAC_THRESHOLD = 10; // typedef Calibration::Ptr CalibrationPtr; VioDatasetPtr vio_dataset; // CalibrationPtr calib; tbb::concurrent_unordered_map calib_corners; tbb::concurrent_unordered_map calib_corners_rejected; tbb::concurrent_unordered_map calib_init_poses; std::shared_ptr processing_thread; std::shared_ptr calib_opt; std::map reprojected_corners; std::map reprojected_vignette; std::map> reprojected_vignette_error; std::string dataset_path; std::string dataset_type; AprilGrid april_grid; std::string cache_path; std::string cache_dataset_name; int skip_images; std::vector cam_types; bool show_gui; const size_t MIN_CORNERS = 15; ////////////////////// pangolin::Var show_frame; pangolin::Var show_corners; pangolin::Var show_corners_rejected; pangolin::Var show_init_reproj; pangolin::Var show_opt; pangolin::Var show_vign; pangolin::Var show_ids; pangolin::Var huber_thresh; pangolin::Var opt_intr; pangolin::Var opt_until_convg; pangolin::Var stop_thresh; std::shared_ptr vign_plotter; std::shared_ptr polar_plotter; std::shared_ptr azimuth_plotter; std::vector cam_colors; pangolin::View *img_view_display; std::vector> img_view; pangolin::DataLog vign_data_log; std::vector> polar_data_log, azimuth_data_log; }; } // namespace basalt