mirror of
https://github.com/introlab/rtabmap.git
synced 2026-09-11 14:00:20 +08:00
Added missing Open3D status in --version and About.
This commit is contained in:
@@ -814,6 +814,12 @@ ParametersMap Parameters::parseArguments(int argc, char * argv[], bool onlyParam
|
||||
std::cout << str << std::setw(spacing - str.size()) << "true" << std::endl;
|
||||
#else
|
||||
std::cout << str << std::setw(spacing - str.size()) << "false" << std::endl;
|
||||
#endif
|
||||
str = "With Open3D:";
|
||||
#ifdef RTABMAP_OPEN3D
|
||||
std::cout << str << std::setw(spacing - str.size()) << "true" << std::endl;
|
||||
#else
|
||||
std::cout << str << std::setw(spacing - str.size()) << "false" << std::endl;
|
||||
#endif
|
||||
str = "With OctoMap:";
|
||||
#ifdef RTABMAP_OCTOMAP
|
||||
|
||||
@@ -191,6 +191,14 @@ AboutDialog::AboutDialog(QWidget * parent) :
|
||||
_ui->label_cccorelib_license->setEnabled(false);
|
||||
#endif
|
||||
|
||||
#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
|
||||
|
||||
#ifdef RTABMAP_FOVIS
|
||||
_ui->label_fovis->setText("Yes");
|
||||
_ui->label_fovis_license->setEnabled(true);
|
||||
|
||||
+1205
-1172
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user