2011-06-05 14:45:39 +00:00
|
|
|
/*
|
2016-07-17 21:57:10 -04:00
|
|
|
Copyright (c) 2010-2016, Mathieu Labbe - IntRoLab - Universite de Sherbrooke
|
2014-08-11 17:00:55 +00:00
|
|
|
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 Universite de Sherbrooke 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.
|
|
|
|
|
*/
|
2011-06-05 14:45:39 +00:00
|
|
|
|
2017-10-20 12:09:34 +02:00
|
|
|
#include "rtabmap/gui/AboutDialog.h"
|
2015-11-26 13:16:01 -05:00
|
|
|
#include "rtabmap/core/Parameters.h"
|
2015-03-16 15:12:17 -04:00
|
|
|
#include "rtabmap/core/CameraRGBD.h"
|
2015-06-26 18:21:32 -04:00
|
|
|
#include "rtabmap/core/CameraStereo.h"
|
2015-11-27 11:09:39 -05:00
|
|
|
#include "rtabmap/core/Optimizer.h"
|
2012-03-03 01:46:30 +00:00
|
|
|
#include "ui_aboutDialog.h"
|
2012-12-11 22:26:39 +00:00
|
|
|
#include <opencv2/core/version.hpp>
|
2013-12-11 00:12:44 +00:00
|
|
|
#include <pcl/pcl_config.h>
|
2017-01-30 13:17:03 -05:00
|
|
|
#include <vtkVersion.h>
|
2011-06-05 14:45:39 +00:00
|
|
|
|
|
|
|
|
namespace rtabmap {
|
|
|
|
|
|
|
|
|
|
AboutDialog::AboutDialog(QWidget * parent) :
|
|
|
|
|
QDialog(parent)
|
|
|
|
|
{
|
2012-03-03 01:46:30 +00:00
|
|
|
_ui = new Ui_aboutDialog();
|
|
|
|
|
_ui->setupUi(this);
|
2015-11-26 13:16:01 -05:00
|
|
|
QString version = Parameters::getVersion().c_str();
|
2014-11-21 23:37:23 +00:00
|
|
|
QString cv_version = CV_VERSION;
|
2020-05-25 17:29:22 -04:00
|
|
|
#if CV_MAJOR_VERSION < 3
|
|
|
|
|
#ifdef RTABMAP_NONFREE
|
2021-02-28 10:31:18 -05:00
|
|
|
_ui->label_opencv_license->setText("Not Commercial [With nonfree module]");
|
2020-05-25 17:29:22 -04:00
|
|
|
#else
|
2021-02-28 10:31:18 -05:00
|
|
|
_ui->label_opencv_license->setText("BSD [Without nonfree module]");
|
2020-05-25 17:29:22 -04:00
|
|
|
#endif
|
|
|
|
|
#elif defined(HAVE_OPENCV_XFEATURES2D)
|
|
|
|
|
#ifdef RTABMAP_NONFREE
|
2021-02-28 10:31:18 -05:00
|
|
|
_ui->label_opencv_license->setText("Not Commercial [With xfeatures2d and nonfree modules]");
|
2020-05-25 17:29:22 -04:00
|
|
|
#else
|
2021-02-21 13:59:36 -05:00
|
|
|
#if CV_MAJOR_VERSION < 4 || (CV_MAJOR_VERSION==4 && CV_MINOR_VERSION<5)
|
2021-02-28 10:31:18 -05:00
|
|
|
_ui->label_opencv_license->setText("BSD [With xfeatures2d module]");
|
2021-02-21 13:59:36 -05:00
|
|
|
#else
|
2021-02-28 10:31:18 -05:00
|
|
|
_ui->label_opencv_license->setText("Apache 3 [With xfeatures2d module]");
|
2021-02-21 13:59:36 -05:00
|
|
|
#endif
|
2020-05-25 17:29:22 -04:00
|
|
|
#endif
|
|
|
|
|
#else
|
2021-02-21 13:59:36 -05:00
|
|
|
#if CV_MAJOR_VERSION < 4 || (CV_MAJOR_VERSION==4 && CV_MINOR_VERSION<5)
|
2021-02-28 10:31:18 -05:00
|
|
|
_ui->label_opencv_license->setText("BSD [Without xfeatures2d and nonfree modules]");
|
2021-02-21 13:59:36 -05:00
|
|
|
#else
|
2021-02-28 10:31:18 -05:00
|
|
|
_ui->label_opencv_license->setText("Apache 3 [Without xfeatures2d and nonfree modules]");
|
2021-02-21 13:59:36 -05:00
|
|
|
#endif
|
2013-12-11 00:12:44 +00:00
|
|
|
#endif
|
|
|
|
|
_ui->label_version->setText(version);
|
2014-11-21 23:37:23 +00:00
|
|
|
_ui->label_opencv_version->setText(cv_version);
|
2013-12-11 00:12:44 +00:00
|
|
|
_ui->label_pcl_version->setText(PCL_VERSION_PRETTY);
|
2017-01-30 13:17:03 -05:00
|
|
|
_ui->label_vtk_version->setText(vtkVersion::GetVTKVersion());
|
2017-06-05 19:04:23 -04:00
|
|
|
_ui->label_qt_version->setText(qVersion());
|
2019-04-18 19:50:58 -04:00
|
|
|
#ifdef RTABMAP_ORB_OCTREE
|
|
|
|
|
_ui->label_orboctree->setText("Yes");
|
|
|
|
|
_ui->label_orboctree_license->setEnabled(true);
|
|
|
|
|
#else
|
|
|
|
|
_ui->label_orboctree->setText("No");
|
|
|
|
|
_ui->label_orboctree_license->setEnabled(false);
|
|
|
|
|
#endif
|
2021-01-17 01:56:27 -05:00
|
|
|
#ifdef RTABMAP_TORCH
|
2020-04-16 17:59:45 -04:00
|
|
|
_ui->label_sptorch->setText("Yes");
|
|
|
|
|
_ui->label_sptorch_license->setEnabled(true);
|
|
|
|
|
#else
|
|
|
|
|
_ui->label_sptorch->setText("No");
|
|
|
|
|
_ui->label_sptorch_license->setEnabled(false);
|
|
|
|
|
#endif
|
2021-01-17 01:56:27 -05:00
|
|
|
#ifdef RTABMAP_PYTHON
|
2020-05-20 09:45:39 -04:00
|
|
|
_ui->label_pymatcher->setText("Yes");
|
|
|
|
|
_ui->label_pymatcher_license->setEnabled(true);
|
2020-05-09 21:13:41 -04:00
|
|
|
#else
|
2020-05-20 09:45:39 -04:00
|
|
|
_ui->label_pymatcher->setText("No");
|
|
|
|
|
_ui->label_pymatcher_license->setEnabled(false);
|
2020-05-09 21:13:41 -04:00
|
|
|
#endif
|
2019-08-14 12:09:56 -04:00
|
|
|
#ifdef RTABMAP_FASTCV
|
|
|
|
|
_ui->label_fastcv->setText("Yes");
|
|
|
|
|
_ui->label_fastcv_license->setEnabled(true);
|
|
|
|
|
#else
|
|
|
|
|
_ui->label_fastcv->setText("No");
|
|
|
|
|
_ui->label_fastcv_license->setEnabled(false);
|
|
|
|
|
#endif
|
2024-09-13 14:22:54 -07:00
|
|
|
#ifdef RTABMAP_PDAL
|
|
|
|
|
_ui->label_pdal->setText("Yes");
|
|
|
|
|
_ui->label_pdal_license->setEnabled(true);
|
|
|
|
|
#else
|
|
|
|
|
_ui->label_pdal->setText("No");
|
|
|
|
|
_ui->label_pdal_license->setEnabled(false);
|
|
|
|
|
#endif
|
2024-10-06 17:16:22 -07:00
|
|
|
#ifdef RTABMAP_LIBLAS
|
|
|
|
|
_ui->label_liblas->setText("Yes");
|
|
|
|
|
_ui->label_liblas_license->setEnabled(true);
|
|
|
|
|
#else
|
|
|
|
|
_ui->label_liblas->setText("No");
|
|
|
|
|
_ui->label_liblas_license->setEnabled(false);
|
|
|
|
|
#endif
|
2024-09-13 14:22:54 -07:00
|
|
|
#ifdef RTABMAP_CUDASIFT
|
|
|
|
|
_ui->label_cudasift->setText("Yes");
|
|
|
|
|
_ui->label_cudasift_license->setEnabled(true);
|
|
|
|
|
#else
|
|
|
|
|
_ui->label_cudasift->setText("No");
|
|
|
|
|
_ui->label_cudasift_license->setEnabled(false);
|
|
|
|
|
#endif
|
2016-07-15 17:46:13 -04:00
|
|
|
#ifdef RTABMAP_OCTOMAP
|
|
|
|
|
_ui->label_octomap->setText("Yes");
|
2017-06-05 19:04:23 -04:00
|
|
|
_ui->label_octomap_license->setEnabled(true);
|
2016-07-15 17:46:13 -04:00
|
|
|
#else
|
|
|
|
|
_ui->label_octomap->setText("No");
|
2017-06-05 19:04:23 -04:00
|
|
|
_ui->label_octomap_license->setEnabled(false);
|
2017-05-05 21:44:06 -04:00
|
|
|
#endif
|
2023-12-17 22:44:11 -08:00
|
|
|
#ifdef RTABMAP_GRIDMAP
|
|
|
|
|
_ui->label_gridmap->setText("Yes");
|
|
|
|
|
_ui->label_gridmap_license->setEnabled(true);
|
|
|
|
|
#else
|
|
|
|
|
_ui->label_gridmap->setText("No");
|
|
|
|
|
_ui->label_gridmap_license->setEnabled(false);
|
|
|
|
|
#endif
|
2017-05-05 21:44:06 -04:00
|
|
|
#ifdef RTABMAP_CPUTSDF
|
|
|
|
|
_ui->label_cputsdf->setText("Yes");
|
2017-06-05 19:04:23 -04:00
|
|
|
_ui->label_cputsdf_license->setEnabled(true);
|
2017-05-05 21:44:06 -04:00
|
|
|
#else
|
|
|
|
|
_ui->label_cputsdf->setText("No");
|
2017-06-05 19:04:23 -04:00
|
|
|
_ui->label_cputsdf_license->setEnabled(false);
|
2016-07-15 17:46:13 -04:00
|
|
|
#endif
|
2018-03-26 18:06:41 -04:00
|
|
|
#ifdef RTABMAP_OPENCHISEL
|
|
|
|
|
_ui->label_openchisel->setText("Yes");
|
|
|
|
|
#else
|
|
|
|
|
_ui->label_openchisel->setText("No");
|
|
|
|
|
#endif
|
2019-10-28 21:16:02 -04:00
|
|
|
#ifdef RTABMAP_ALICE_VISION
|
|
|
|
|
_ui->label_aliceVision->setText("Yes");
|
|
|
|
|
_ui->label_aliceVision_license->setEnabled(true);
|
|
|
|
|
#else
|
|
|
|
|
_ui->label_aliceVision->setText("No");
|
|
|
|
|
_ui->label_aliceVision_license->setEnabled(false);
|
|
|
|
|
#endif
|
2018-03-26 18:06:41 -04:00
|
|
|
|
2015-03-16 15:12:17 -04:00
|
|
|
_ui->label_freenect->setText(CameraFreenect::available()?"Yes":"No");
|
2017-06-05 19:04:23 -04:00
|
|
|
_ui->label_freenect_license->setEnabled(CameraFreenect::available());
|
2024-06-15 23:12:07 +02:00
|
|
|
_ui->label_openni->setText(CameraOpenni::available()?"Yes":"No");
|
|
|
|
|
_ui->label_openni_license->setEnabled(CameraOpenni::available());
|
2015-03-16 15:12:17 -04:00
|
|
|
_ui->label_openni2->setText(CameraOpenNI2::available()?"Yes":"No");
|
2017-06-05 19:04:23 -04:00
|
|
|
_ui->label_openni2_license->setEnabled(CameraOpenNI2::available());
|
2015-05-11 11:05:38 -04:00
|
|
|
_ui->label_freenect2->setText(CameraFreenect2::available()?"Yes":"No");
|
2017-06-05 19:04:23 -04:00
|
|
|
_ui->label_freenect2_license->setEnabled(CameraFreenect2::available());
|
2016-07-26 18:39:34 -04:00
|
|
|
_ui->label_realsense->setText(CameraRealSense::available() ? "Yes" : "No");
|
2017-06-05 19:04:23 -04:00
|
|
|
_ui->label_realsense_license->setEnabled(CameraRealSense::available());
|
2018-07-24 17:11:27 -04:00
|
|
|
_ui->label_realsense2->setText(CameraRealSense2::available() ? "Yes" : "No");
|
|
|
|
|
_ui->label_realsense2_license->setEnabled(CameraRealSense2::available());
|
2015-05-11 11:05:38 -04:00
|
|
|
_ui->label_dc1394->setText(CameraStereoDC1394::available()?"Yes":"No");
|
2017-06-05 19:04:23 -04:00
|
|
|
_ui->label_dc1394_license->setEnabled(CameraStereoDC1394::available());
|
2015-05-11 11:05:38 -04:00
|
|
|
_ui->label_flycapture2->setText(CameraStereoFlyCapture2::available()?"Yes":"No");
|
2016-07-15 17:46:13 -04:00
|
|
|
_ui->label_zed->setText(CameraStereoZed::available()?"Yes":"No");
|
2021-02-28 10:31:18 -05:00
|
|
|
_ui->label_zedOC->setText(CameraStereoZedOC::available()?"Yes":"No");
|
|
|
|
|
_ui->label_zedOC_license->setEnabled(CameraStereoZedOC::available());
|
2019-07-09 20:48:09 -04:00
|
|
|
_ui->label_k4w2->setText(CameraK4W2::available() ? "Yes" : "No");
|
|
|
|
|
_ui->label_k4a->setText(CameraK4A::available() ? "Yes" : "No");
|
2020-09-04 10:39:15 -04:00
|
|
|
_ui->label_mynteye->setText(CameraMyntEye::available() ? "Yes" : "No");
|
2021-03-07 12:27:21 -05:00
|
|
|
_ui->label_depthai->setText(CameraDepthAI::available() ? "Yes" : "No");
|
|
|
|
|
_ui->label_depthai_license->setEnabled(CameraDepthAI::available());
|
2024-05-30 16:55:37 +08:00
|
|
|
_ui->label_xvsdk->setText(CameraSeerSense::available() ? "Yes" : "No");
|
2015-04-07 12:00:10 -04:00
|
|
|
|
2017-06-05 19:04:23 -04:00
|
|
|
_ui->label_toro->setText(Optimizer::isAvailable(Optimizer::kTypeTORO)?"Yes":"No");
|
|
|
|
|
_ui->label_toro_license->setEnabled(Optimizer::isAvailable(Optimizer::kTypeTORO)?true:false);
|
2015-11-27 11:09:39 -05:00
|
|
|
_ui->label_g2o->setText(Optimizer::isAvailable(Optimizer::kTypeG2O)?"Yes":"No");
|
2017-06-05 19:04:23 -04:00
|
|
|
_ui->label_g2o_license->setEnabled(Optimizer::isAvailable(Optimizer::kTypeG2O)?true:false);
|
2015-11-27 11:09:39 -05:00
|
|
|
_ui->label_gtsam->setText(Optimizer::isAvailable(Optimizer::kTypeGTSAM)?"Yes":"No");
|
2017-06-05 19:04:23 -04:00
|
|
|
_ui->label_gtsam_license->setEnabled(Optimizer::isAvailable(Optimizer::kTypeGTSAM)?true:false);
|
2015-11-27 11:09:39 -05:00
|
|
|
_ui->label_cvsba->setText(Optimizer::isAvailable(Optimizer::kTypeCVSBA)?"Yes":"No");
|
2017-06-05 19:04:23 -04:00
|
|
|
_ui->label_cvsba_license->setEnabled(Optimizer::isAvailable(Optimizer::kTypeCVSBA)?true:false);
|
2019-08-17 03:55:04 -04:00
|
|
|
_ui->label_ceres->setText(Optimizer::isAvailable(Optimizer::kTypeCeres)?"Yes":"No");
|
|
|
|
|
_ui->label_ceres_license->setEnabled(Optimizer::isAvailable(Optimizer::kTypeCeres)?true:false);
|
2015-08-12 20:59:21 -04:00
|
|
|
|
2023-02-10 17:29:10 -08:00
|
|
|
#ifdef RTABMAP_MRPT
|
|
|
|
|
_ui->label_mrpt->setText("Yes");
|
|
|
|
|
_ui->label_mrpt_license->setEnabled(true);
|
|
|
|
|
#else
|
|
|
|
|
_ui->label_mrpt->setText("No");
|
|
|
|
|
_ui->label_mrpt_license->setEnabled(false);
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-08-22 16:20:49 -04:00
|
|
|
#ifdef RTABMAP_POINTMATCHER
|
|
|
|
|
_ui->label_libpointmatcher->setText("Yes");
|
|
|
|
|
_ui->label_libpointmatcher_license->setEnabled(true);
|
|
|
|
|
#else
|
|
|
|
|
_ui->label_libpointmatcher->setText("No");
|
|
|
|
|
_ui->label_libpointmatcher_license->setEnabled(false);
|
|
|
|
|
#endif
|
|
|
|
|
|
2021-03-27 15:11:20 -04:00
|
|
|
#ifdef RTABMAP_CCCORELIB
|
|
|
|
|
_ui->label_cccorelib->setText("Yes");
|
|
|
|
|
_ui->label_cccorelib_license->setEnabled(true);
|
|
|
|
|
#else
|
|
|
|
|
_ui->label_cccorelib->setText("No");
|
|
|
|
|
_ui->label_cccorelib_license->setEnabled(false);
|
|
|
|
|
#endif
|
|
|
|
|
|
2024-01-27 15:20:10 -08:00
|
|
|
#ifdef RTABMAP_OPEN3D
|
|
|
|
|
_ui->label_open3d->setText("Yes");
|
|
|
|
|
_ui->label_open3d_license->setEnabled(true);
|
|
|
|
|
#else
|
|
|
|
|
_ui->label_open3d->setText("No");
|
|
|
|
|
_ui->label_open3d_license->setEnabled(false);
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-05-30 18:29:49 -04:00
|
|
|
#ifdef RTABMAP_FOVIS
|
|
|
|
|
_ui->label_fovis->setText("Yes");
|
2017-06-05 19:04:23 -04:00
|
|
|
_ui->label_fovis_license->setEnabled(true);
|
2017-05-30 18:29:49 -04:00
|
|
|
#else
|
|
|
|
|
_ui->label_fovis->setText("No");
|
2017-06-05 19:04:23 -04:00
|
|
|
_ui->label_fovis_license->setEnabled(false);
|
2017-05-30 18:29:49 -04:00
|
|
|
#endif
|
|
|
|
|
#ifdef RTABMAP_VISO2
|
|
|
|
|
_ui->label_viso2->setText("Yes");
|
2017-06-05 19:04:23 -04:00
|
|
|
_ui->label_viso2_license->setEnabled(true);
|
2017-05-30 18:29:49 -04:00
|
|
|
#else
|
|
|
|
|
_ui->label_viso2->setText("No");
|
2017-06-05 19:04:23 -04:00
|
|
|
_ui->label_viso2_license->setEnabled(false);
|
2017-05-30 18:29:49 -04:00
|
|
|
#endif
|
2017-05-31 20:57:24 -04:00
|
|
|
#ifdef RTABMAP_DVO
|
|
|
|
|
_ui->label_dvo->setText("Yes");
|
2017-06-05 19:04:23 -04:00
|
|
|
_ui->label_dvo_license->setEnabled(true);
|
2017-05-31 20:57:24 -04:00
|
|
|
#else
|
|
|
|
|
_ui->label_dvo->setText("No");
|
2017-06-05 19:04:23 -04:00
|
|
|
_ui->label_dvo_license->setEnabled(false);
|
|
|
|
|
#endif
|
2021-03-09 16:00:41 -05:00
|
|
|
#ifdef RTABMAP_ORB_SLAM
|
|
|
|
|
#if RTABMAP_ORB_SLAM == 3
|
|
|
|
|
_ui->label_orbslam_title->setText("With ORB SLAM3 :");
|
|
|
|
|
#elif RTABMAP_ORB_SLAM == 2
|
|
|
|
|
_ui->label_orbslam_title->setText("With ORB SLAM2 :");
|
|
|
|
|
#endif
|
|
|
|
|
_ui->label_orbslam->setText("Yes");
|
|
|
|
|
_ui->label_orbslam_license->setEnabled(true);
|
2017-06-05 19:04:23 -04:00
|
|
|
#else
|
2021-03-09 16:00:41 -05:00
|
|
|
_ui->label_orbslam->setText("No");
|
|
|
|
|
_ui->label_orbslam_license->setEnabled(false);
|
2017-05-31 20:57:24 -04:00
|
|
|
#endif
|
2017-05-30 18:29:49 -04:00
|
|
|
|
2018-07-24 17:11:27 -04:00
|
|
|
#ifdef RTABMAP_OKVIS
|
|
|
|
|
_ui->label_okvis->setText("Yes");
|
|
|
|
|
_ui->label_okvis_license->setEnabled(true);
|
|
|
|
|
#else
|
|
|
|
|
_ui->label_okvis->setText("No");
|
|
|
|
|
_ui->label_okvis_license->setEnabled(false);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef RTABMAP_LOAM
|
|
|
|
|
_ui->label_loam->setText("Yes");
|
|
|
|
|
_ui->label_loam_license->setEnabled(true);
|
|
|
|
|
#else
|
|
|
|
|
_ui->label_loam->setText("No");
|
|
|
|
|
_ui->label_loam_license->setEnabled(false);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef RTABMAP_MSCKF_VIO
|
|
|
|
|
_ui->label_msckf->setText("Yes");
|
|
|
|
|
_ui->label_msckf_license->setEnabled(true);
|
|
|
|
|
#else
|
|
|
|
|
_ui->label_msckf->setText("No");
|
|
|
|
|
_ui->label_msckf_license->setEnabled(false);
|
|
|
|
|
#endif
|
|
|
|
|
|
2021-03-28 23:51:02 -04:00
|
|
|
#ifdef RTABMAP_VINS
|
|
|
|
|
_ui->label_vins_fusion->setText("Yes");
|
|
|
|
|
_ui->label_vins_fusion_license->setEnabled(true);
|
|
|
|
|
#else
|
|
|
|
|
_ui->label_vins_fusion->setText("No");
|
|
|
|
|
_ui->label_vins_fusion_license->setEnabled(false);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef RTABMAP_OPENVINS
|
|
|
|
|
_ui->label_openvins->setText("Yes");
|
|
|
|
|
_ui->label_openvins_license->setEnabled(true);
|
|
|
|
|
#else
|
|
|
|
|
_ui->label_openvins->setText("No");
|
|
|
|
|
_ui->label_openvins_license->setEnabled(false);
|
|
|
|
|
#endif
|
|
|
|
|
|
2012-03-03 01:46:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AboutDialog::~AboutDialog()
|
|
|
|
|
{
|
|
|
|
|
delete _ui;
|
2011-06-05 14:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|