/* Copyright (c) 2010-2016, Mathieu Labbe - IntRoLab - Universite de Sherbrooke 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. */ #include "rtabmap/gui/DatabaseViewer.h" #include "rtabmap/gui/CloudViewer.h" #include "ui_DatabaseViewer.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "rtabmap/utilite/UPlot.h" #include "rtabmap/core/DBDriver.h" #include "rtabmap/gui/KeypointItem.h" #include "rtabmap/gui/CloudViewer.h" #include "rtabmap/utilite/UCv2Qt.h" #include "rtabmap/core/util3d.h" #include "rtabmap/core/util3d_transforms.h" #include "rtabmap/core/util3d_filtering.h" #include "rtabmap/core/util3d_surface.h" #include "rtabmap/core/util3d_registration.h" #include "rtabmap/core/util3d_mapping.h" #include "rtabmap/core/util2d.h" #include "rtabmap/core/Signature.h" #include "rtabmap/core/Memory.h" #include "rtabmap/core/Features2d.h" #include "rtabmap/core/Compression.h" #include "rtabmap/core/Graph.h" #include "rtabmap/core/Stereo.h" #include "rtabmap/core/Optimizer.h" #include "rtabmap/core/RegistrationVis.h" #include "rtabmap/core/RegistrationIcp.h" #include "rtabmap/core/OccupancyGrid.h" #include "rtabmap/core/GeodeticCoords.h" #include "rtabmap/core/Recovery.h" #include "rtabmap/gui/DataRecorder.h" #include "rtabmap/gui/ExportCloudsDialog.h" #include "rtabmap/gui/EditDepthArea.h" #include "rtabmap/gui/EditMapArea.h" #include "rtabmap/core/SensorData.h" #include "rtabmap/core/GainCompensator.h" #include "rtabmap/gui/ExportDialog.h" #include "rtabmap/gui/EditConstraintDialog.h" #include "rtabmap/gui/ProgressDialog.h" #include "rtabmap/gui/ParametersToolBox.h" #include "rtabmap/gui/RecoveryState.h" #include #include #include #include #include #include #include #ifdef RTABMAP_OCTOMAP #include "rtabmap/core/OctoMap.h" #endif namespace rtabmap { DatabaseViewer::DatabaseViewer(const QString & ini, QWidget * parent) : QMainWindow(parent), dbDriver_(0), octomap_(0), exportDialog_(new ExportCloudsDialog(this)), editDepthDialog_(new QDialog(this)), editMapDialog_(new QDialog(this)), savedMaximized_(false), firstCall_(true), iniFilePath_(ini), infoReducedGraph_(false), infoTotalOdom_(0.0), infoSessions_(0) { pathDatabase_ = QDir::homePath()+"/Documents/RTAB-Map"; //use home directory by default if(!UDirectory::exists(pathDatabase_.toStdString())) { pathDatabase_ = QDir::homePath(); } ui_ = new Ui_DatabaseViewer(); ui_->setupUi(this); ui_->buttonBox->setVisible(false); connect(ui_->buttonBox->button(QDialogButtonBox::Close), SIGNAL(clicked()), this, SLOT(close())); ui_->comboBox_logger_level->setVisible(parent==0); ui_->label_logger_level->setVisible(parent==0); connect(ui_->comboBox_logger_level, SIGNAL(currentIndexChanged(int)), this, SLOT(updateLoggerLevel())); connect(ui_->actionVertical_Layout, SIGNAL(toggled(bool)), this, SLOT(setupMainLayout(bool))); editDepthDialog_->resize(640, 480); QVBoxLayout * vLayout = new QVBoxLayout(editDepthDialog_); editDepthArea_ = new EditDepthArea(editDepthDialog_); vLayout->setContentsMargins(0,0,0,0); vLayout->setSpacing(0); vLayout->addWidget(editDepthArea_, 1); QDialogButtonBox * buttonBox = new QDialogButtonBox(QDialogButtonBox::Save | QDialogButtonBox::Cancel | QDialogButtonBox::Reset, Qt::Horizontal, editDepthDialog_); vLayout->addWidget(buttonBox); connect(buttonBox, SIGNAL(accepted()), editDepthDialog_, SLOT(accept())); connect(buttonBox, SIGNAL(rejected()), editDepthDialog_, SLOT(reject())); connect(buttonBox->button(QDialogButtonBox::Reset), SIGNAL(clicked()), editDepthArea_, SLOT(resetChanges())); editDepthDialog_->setLayout(vLayout); editDepthDialog_->setWindowTitle(tr("Edit Depth Image")); editMapDialog_->resize(640, 480); vLayout = new QVBoxLayout(editMapDialog_); editMapArea_ = new EditMapArea(editMapDialog_); vLayout->setContentsMargins(0,0,0,0); vLayout->setSpacing(0); vLayout->addWidget(editMapArea_, 1); buttonBox = new QDialogButtonBox(QDialogButtonBox::Save | QDialogButtonBox::Cancel | QDialogButtonBox::Reset, Qt::Horizontal, editMapDialog_); vLayout->addWidget(buttonBox); connect(buttonBox, SIGNAL(accepted()), editMapDialog_, SLOT(accept())); connect(buttonBox, SIGNAL(rejected()), editMapDialog_, SLOT(reject())); connect(buttonBox->button(QDialogButtonBox::Reset), SIGNAL(clicked()), editMapArea_, SLOT(resetChanges())); editMapDialog_->setLayout(vLayout); editMapDialog_->setWindowTitle(tr("Edit Optimized Map")); QString title("RTAB-Map Database Viewer[*]"); this->setWindowTitle(title); ui_->dockWidget_constraints->setVisible(false); ui_->dockWidget_graphView->setVisible(false); ui_->dockWidget_occupancyGridView->setVisible(false); ui_->dockWidget_guiparameters->setVisible(false); ui_->dockWidget_coreparameters->setVisible(false); ui_->dockWidget_info->setVisible(false); ui_->dockWidget_stereoView->setVisible(false); ui_->dockWidget_view3d->setVisible(false); ui_->dockWidget_statistics->setVisible(false); // Create cloud viewers constraintsViewer_ = new CloudViewer(ui_->dockWidgetContents); cloudViewer_ = new CloudViewer(ui_->dockWidgetContents_3dviews); stereoViewer_ = new CloudViewer(ui_->dockWidgetContents_stereo); occupancyGridViewer_ = new CloudViewer(ui_->dockWidgetContents_occupancyGrid); constraintsViewer_->setObjectName("constraintsViewer"); cloudViewer_->setObjectName("cloudViewerA"); stereoViewer_->setObjectName("stereoViewer"); occupancyGridViewer_->setObjectName("occupancyGridView"); ui_->layout_constraintsViewer->addWidget(constraintsViewer_); ui_->horizontalLayout_3dviews->addWidget(cloudViewer_, 1); ui_->horizontalLayout_stereo->addWidget(stereoViewer_, 1); ui_->layout_occupancyGridView->addWidget(occupancyGridViewer_, 1); constraintsViewer_->setCameraLockZ(false); constraintsViewer_->setCameraFree(); occupancyGridViewer_->setCameraFree(); ui_->graphicsView_stereo->setAlpha(255); #ifndef RTABMAP_OCTOMAP ui_->checkBox_octomap->setEnabled(false); ui_->checkBox_octomap->setChecked(false); #endif ParametersMap parameters; uInsert(parameters, Parameters::getDefaultParameters("SURF")); uInsert(parameters, Parameters::getDefaultParameters("SIFT")); uInsert(parameters, Parameters::getDefaultParameters("BRIEF")); uInsert(parameters, Parameters::getDefaultParameters("FAST")); uInsert(parameters, Parameters::getDefaultParameters("GFTT")); uInsert(parameters, Parameters::getDefaultParameters("ORB")); uInsert(parameters, Parameters::getDefaultParameters("FREAK")); uInsert(parameters, Parameters::getDefaultParameters("BRISK")); uInsert(parameters, Parameters::getDefaultParameters("KAZE")); uInsert(parameters, Parameters::getDefaultParameters("SuperPoint")); uInsert(parameters, Parameters::getDefaultParameters("Optimizer")); uInsert(parameters, Parameters::getDefaultParameters("g2o")); uInsert(parameters, Parameters::getDefaultParameters("GTSAM")); uInsert(parameters, Parameters::getDefaultParameters("Reg")); uInsert(parameters, Parameters::getDefaultParameters("Vis")); uInsert(parameters, Parameters::getDefaultParameters("Icp")); uInsert(parameters, Parameters::getDefaultParameters("PyMatcher")); uInsert(parameters, Parameters::getDefaultParameters("Stereo")); uInsert(parameters, Parameters::getDefaultParameters("StereoBM")); uInsert(parameters, Parameters::getDefaultParameters("StereoSGBM")); uInsert(parameters, Parameters::getDefaultParameters("Grid")); uInsert(parameters, Parameters::getDefaultParameters("GridGlobal")); uInsert(parameters, Parameters::getDefaultParameters("Marker")); parameters.insert(*Parameters::getDefaultParameters().find(Parameters::kRGBDOptimizeMaxError())); parameters.insert(*Parameters::getDefaultParameters().find(Parameters::kRGBDLoopClosureReextractFeatures())); parameters.insert(*Parameters::getDefaultParameters().find(Parameters::kRGBDLoopCovLimited())); parameters.insert(*Parameters::getDefaultParameters().find(Parameters::kRGBDProximityPathFilteringRadius())); ui_->parameters_toolbox->setupUi(parameters); exportDialog_->setObjectName("ExportCloudsDialog"); restoreDefaultSettings(); this->readSettings(); setupMainLayout(ui_->actionVertical_Layout->isChecked()); ui_->comboBox_octomap_rendering_type->setVisible(ui_->checkBox_octomap->isChecked()); ui_->spinBox_grid_depth->setVisible(ui_->checkBox_octomap->isChecked()); ui_->checkBox_grid_empty->setVisible(!ui_->checkBox_octomap->isChecked() || ui_->comboBox_octomap_rendering_type->currentIndex()==0); ui_->label_octomap_cubes->setVisible(ui_->checkBox_octomap->isChecked()); ui_->label_octomap_depth->setVisible(ui_->checkBox_octomap->isChecked()); ui_->label_octomap_empty->setVisible(!ui_->checkBox_octomap->isChecked() || ui_->comboBox_octomap_rendering_type->currentIndex()==0); ui_->menuView->addAction(ui_->dockWidget_constraints->toggleViewAction()); ui_->menuView->addAction(ui_->dockWidget_graphView->toggleViewAction()); ui_->menuView->addAction(ui_->dockWidget_occupancyGridView->toggleViewAction()); ui_->menuView->addAction(ui_->dockWidget_stereoView->toggleViewAction()); ui_->menuView->addAction(ui_->dockWidget_view3d->toggleViewAction()); ui_->menuView->addAction(ui_->dockWidget_guiparameters->toggleViewAction()); ui_->menuView->addAction(ui_->dockWidget_coreparameters->toggleViewAction()); ui_->menuView->addAction(ui_->dockWidget_info->toggleViewAction()); ui_->menuView->addAction(ui_->dockWidget_statistics->toggleViewAction()); connect(ui_->dockWidget_graphView->toggleViewAction(), SIGNAL(triggered()), this, SLOT(updateGraphView())); connect(ui_->dockWidget_occupancyGridView->toggleViewAction(), SIGNAL(triggered()), this, SLOT(updateGraphView())); connect(ui_->dockWidget_statistics->toggleViewAction(), SIGNAL(triggered()), this, SLOT(updateStatistics())); connect(ui_->dockWidget_info->toggleViewAction(), SIGNAL(triggered()), this, SLOT(updateInfo())); connect(ui_->parameters_toolbox, SIGNAL(parametersChanged(const QStringList &)), this, SLOT(notifyParametersChanged(const QStringList &))); connect(ui_->actionQuit, SIGNAL(triggered()), this, SLOT(close())); ui_->actionOpen_database->setEnabled(true); ui_->actionClose_database->setEnabled(false); // connect actions with custom slots ui_->actionSave_config->setShortcut(QKeySequence::Save); connect(ui_->actionSave_config, SIGNAL(triggered()), this, SLOT(writeSettings())); connect(ui_->actionOpen_database, SIGNAL(triggered()), this, SLOT(openDatabase())); connect(ui_->actionClose_database, SIGNAL(triggered()), this, SLOT(closeDatabase())); connect(ui_->actionDatabase_recovery, SIGNAL(triggered()), this, SLOT(recoverDatabase())); connect(ui_->actionExport, SIGNAL(triggered()), this, SLOT(exportDatabase())); connect(ui_->actionExtract_images, SIGNAL(triggered()), this, SLOT(extractImages())); connect(ui_->actionEdit_depth_image, SIGNAL(triggered()), this, SLOT(editDepthImage())); connect(ui_->actionGenerate_graph_dot, SIGNAL(triggered()), this, SLOT(generateGraph())); connect(ui_->actionGenerate_local_graph_dot, SIGNAL(triggered()), this, SLOT(generateLocalGraph())); connect(ui_->actionRaw_format_txt, SIGNAL(triggered()), this , SLOT(exportPosesRaw())); connect(ui_->actionRGBD_SLAM_format_txt, SIGNAL(triggered()), this , SLOT(exportPosesRGBDSLAM())); connect(ui_->actionRGBD_SLAM_motion_capture_format_txt, SIGNAL(triggered()), this , SLOT(exportPosesRGBDSLAMMotionCapture())); connect(ui_->actionKITTI_format_txt, SIGNAL(triggered()), this , SLOT(exportPosesKITTI())); connect(ui_->actionTORO_graph, SIGNAL(triggered()), this , SLOT(exportPosesTORO())); connect(ui_->actionG2o_g2o, SIGNAL(triggered()), this , SLOT(exportPosesG2O())); connect(ui_->actionPoses_KML, SIGNAL(triggered()), this , SLOT(exportPosesKML())); connect(ui_->actionGPS_TXT, SIGNAL(triggered()), this , SLOT(exportGPS_TXT())); connect(ui_->actionGPS_KML, SIGNAL(triggered()), this , SLOT(exportGPS_KML())); connect(ui_->actionEdit_optimized_2D_map, SIGNAL(triggered()), this , SLOT(editSaved2DMap())); connect(ui_->actionExport_saved_2D_map, SIGNAL(triggered()), this , SLOT(exportSaved2DMap())); connect(ui_->actionImport_2D_map, SIGNAL(triggered()), this , SLOT(import2DMap())); connect(ui_->actionRegenerate_optimized_2D_map, SIGNAL(triggered()), this , SLOT(regenerateSavedMap())); connect(ui_->actionView_optimized_mesh, SIGNAL(triggered()), this , SLOT(viewOptimizedMesh())); connect(ui_->actionExport_optimized_mesh, SIGNAL(triggered()), this , SLOT(exportOptimizedMesh())); connect(ui_->actionUpdate_optimized_mesh, SIGNAL(triggered()), this , SLOT(updateOptimizedMesh())); connect(ui_->actionView_3D_map, SIGNAL(triggered()), this, SLOT(view3DMap())); connect(ui_->actionGenerate_3D_map_pcd, SIGNAL(triggered()), this, SLOT(generate3DMap())); connect(ui_->actionDetect_more_loop_closures, SIGNAL(triggered()), this, SLOT(detectMoreLoopClosures())); connect(ui_->actionUpdate_all_neighbor_covariances, SIGNAL(triggered()), this, SLOT(updateAllNeighborCovariances())); connect(ui_->actionUpdate_all_loop_closure_covariances, SIGNAL(triggered()), this, SLOT(updateAllLoopClosureCovariances())); connect(ui_->actionRefine_all_neighbor_links, SIGNAL(triggered()), this, SLOT(refineAllNeighborLinks())); connect(ui_->actionRefine_all_loop_closure_links, SIGNAL(triggered()), this, SLOT(refineAllLoopClosureLinks())); connect(ui_->actionRegenerate_local_grid_maps, SIGNAL(triggered()), this, SLOT(regenerateLocalMaps())); connect(ui_->actionRegenerate_local_grid_maps_selected, SIGNAL(triggered()), this, SLOT(regenerateCurrentLocalMaps())); connect(ui_->actionReset_all_changes, SIGNAL(triggered()), this, SLOT(resetAllChanges())); connect(ui_->actionRestore_default_GUI_settings, SIGNAL(triggered()), this, SLOT(restoreDefaultSettings())); //ICP buttons connect(ui_->pushButton_refine, SIGNAL(clicked()), this, SLOT(refineConstraint())); connect(ui_->pushButton_add, SIGNAL(clicked()), this, SLOT(addConstraint())); connect(ui_->pushButton_reset, SIGNAL(clicked()), this, SLOT(resetConstraint())); connect(ui_->pushButton_reject, SIGNAL(clicked()), this, SLOT(rejectConstraint())); ui_->pushButton_refine->setEnabled(false); ui_->pushButton_add->setEnabled(false); ui_->pushButton_reset->setEnabled(false); ui_->pushButton_reject->setEnabled(false); ui_->menuEdit->setEnabled(false); ui_->actionGenerate_3D_map_pcd->setEnabled(false); ui_->actionExport->setEnabled(false); ui_->actionExtract_images->setEnabled(false); ui_->menuExport_poses->setEnabled(false); ui_->menuExport_GPS->setEnabled(false); ui_->actionPoses_KML->setEnabled(false); ui_->actionEdit_optimized_2D_map->setEnabled(false); ui_->actionExport_saved_2D_map->setEnabled(false); ui_->actionImport_2D_map->setEnabled(false); ui_->actionRegenerate_optimized_2D_map->setEnabled(false); ui_->actionView_optimized_mesh->setEnabled(false); ui_->actionExport_optimized_mesh->setEnabled(false); ui_->actionUpdate_optimized_mesh->setEnabled(false); ui_->horizontalSlider_A->setTracking(false); ui_->horizontalSlider_B->setTracking(false); ui_->horizontalSlider_A->setEnabled(false); ui_->horizontalSlider_B->setEnabled(false); connect(ui_->horizontalSlider_A, SIGNAL(valueChanged(int)), this, SLOT(sliderAValueChanged(int))); connect(ui_->horizontalSlider_B, SIGNAL(valueChanged(int)), this, SLOT(sliderBValueChanged(int))); connect(ui_->horizontalSlider_A, SIGNAL(sliderMoved(int)), this, SLOT(sliderAMoved(int))); connect(ui_->horizontalSlider_B, SIGNAL(sliderMoved(int)), this, SLOT(sliderBMoved(int))); connect(ui_->spinBox_mesh_angleTolerance, SIGNAL(valueChanged(int)), this, SLOT(update3dView())); connect(ui_->spinBox_mesh_minClusterSize, SIGNAL(valueChanged(int)), this, SLOT(update3dView())); connect(ui_->spinBox_mesh_fillDepthHoles, SIGNAL(valueChanged(int)), this, SLOT(update3dView())); connect(ui_->spinBox_mesh_depthError, SIGNAL(valueChanged(int)), this, SLOT(update3dView())); connect(ui_->checkBox_mesh_quad, SIGNAL(toggled(bool)), this, SLOT(update3dView())); connect(ui_->spinBox_mesh_triangleSize, SIGNAL(valueChanged(int)), this, SLOT(update3dView())); connect(ui_->checkBox_showWords, SIGNAL(toggled(bool)), this, SLOT(update3dView())); connect(ui_->checkBox_showCloud, SIGNAL(toggled(bool)), this, SLOT(update3dView())); connect(ui_->checkBox_showMesh, SIGNAL(toggled(bool)), this, SLOT(update3dView())); connect(ui_->checkBox_showScan, SIGNAL(toggled(bool)), this, SLOT(update3dView())); connect(ui_->checkBox_showMap, SIGNAL(toggled(bool)), this, SLOT(update3dView())); connect(ui_->checkBox_showGrid, SIGNAL(toggled(bool)), this, SLOT(update3dView())); connect(ui_->checkBox_odomFrame_3dview, SIGNAL(toggled(bool)), this, SLOT(update3dView())); ui_->horizontalSlider_neighbors->setTracking(false); ui_->horizontalSlider_loops->setTracking(false); ui_->horizontalSlider_neighbors->setEnabled(false); ui_->horizontalSlider_loops->setEnabled(false); connect(ui_->horizontalSlider_neighbors, SIGNAL(valueChanged(int)), this, SLOT(sliderNeighborValueChanged(int))); connect(ui_->horizontalSlider_loops, SIGNAL(valueChanged(int)), this, SLOT(sliderLoopValueChanged(int))); connect(ui_->horizontalSlider_neighbors, SIGNAL(sliderMoved(int)), this, SLOT(sliderNeighborValueChanged(int))); connect(ui_->horizontalSlider_loops, SIGNAL(sliderMoved(int)), this, SLOT(sliderLoopValueChanged(int))); connect(ui_->checkBox_showOptimized, SIGNAL(stateChanged(int)), this, SLOT(updateConstraintView())); connect(ui_->checkBox_show3Dclouds, SIGNAL(stateChanged(int)), this, SLOT(updateConstraintView())); connect(ui_->checkBox_show2DScans, SIGNAL(stateChanged(int)), this, SLOT(updateConstraintView())); connect(ui_->checkBox_show3DWords, SIGNAL(stateChanged(int)), this, SLOT(updateConstraintView())); connect(ui_->checkBox_odomFrame, SIGNAL(stateChanged(int)), this, SLOT(updateConstraintView())); ui_->checkBox_showOptimized->setEnabled(false); connect(ui_->toolButton_constraint, SIGNAL(clicked(bool)), this, SLOT(editConstraint())); ui_->horizontalSlider_iterations->setTracking(false); ui_->horizontalSlider_iterations->setEnabled(false); ui_->spinBox_optimizationsFrom->setEnabled(false); connect(ui_->horizontalSlider_iterations, SIGNAL(valueChanged(int)), this, SLOT(sliderIterationsValueChanged(int))); connect(ui_->horizontalSlider_iterations, SIGNAL(sliderMoved(int)), this, SLOT(sliderIterationsValueChanged(int))); connect(ui_->spinBox_optimizationsFrom, SIGNAL(editingFinished()), this, SLOT(updateGraphView())); connect(ui_->checkBox_iterativeOptimization, SIGNAL(stateChanged(int)), this, SLOT(updateGraphView())); connect(ui_->checkBox_spanAllMaps, SIGNAL(stateChanged(int)), this, SLOT(updateGraphView())); connect(ui_->checkBox_wmState, SIGNAL(stateChanged(int)), this, SLOT(updateGraphView())); connect(ui_->graphViewer, SIGNAL(mapShownRequested()), this, SLOT(updateGraphView())); connect(ui_->checkBox_ignorePoseCorrection, SIGNAL(stateChanged(int)), this, SLOT(updateGraphView())); connect(ui_->checkBox_ignorePoseCorrection, SIGNAL(stateChanged(int)), this, SLOT(updateConstraintView())); connect(ui_->checkBox_ignoreGlobalLoop, SIGNAL(stateChanged(int)), this, SLOT(updateGraphView())); connect(ui_->checkBox_ignoreLocalLoopSpace, SIGNAL(stateChanged(int)), this, SLOT(updateGraphView())); connect(ui_->checkBox_ignoreLocalLoopTime, SIGNAL(stateChanged(int)), this, SLOT(updateGraphView())); connect(ui_->checkBox_ignoreUserLoop, SIGNAL(stateChanged(int)), this, SLOT(updateGraphView())); connect(ui_->doubleSpinBox_optimizationScale, SIGNAL(editingFinished()), this, SLOT(updateGraphView())); connect(ui_->checkBox_octomap, SIGNAL(stateChanged(int)), this, SLOT(updateGrid())); connect(ui_->checkBox_grid_2d, SIGNAL(stateChanged(int)), this, SLOT(updateGrid())); connect(ui_->comboBox_octomap_rendering_type, SIGNAL(currentIndexChanged(int)), this, SLOT(updateOctomapView())); connect(ui_->spinBox_grid_depth, SIGNAL(valueChanged(int)), this, SLOT(updateOctomapView())); connect(ui_->checkBox_grid_empty, SIGNAL(stateChanged(int)), this, SLOT(updateGrid())); connect(ui_->doubleSpinBox_gainCompensationRadius, SIGNAL(valueChanged(double)), this, SLOT(updateConstraintView())); connect(ui_->doubleSpinBox_voxelSize, SIGNAL(valueChanged(double)), this, SLOT(updateConstraintView())); connect(ui_->doubleSpinBox_voxelSize, SIGNAL(valueChanged(double)), this, SLOT(update3dView())); connect(ui_->spinBox_decimation, SIGNAL(valueChanged(int)), this, SLOT(updateConstraintView())); connect(ui_->spinBox_decimation, SIGNAL(valueChanged(int)), this, SLOT(update3dView())); connect(ui_->groupBox_posefiltering, SIGNAL(clicked(bool)), this, SLOT(updateGraphView())); connect(ui_->doubleSpinBox_posefilteringRadius, SIGNAL(editingFinished()), this, SLOT(updateGraphView())); connect(ui_->doubleSpinBox_posefilteringAngle, SIGNAL(editingFinished()), this, SLOT(updateGraphView())); ui_->label_stereo_inliers_name->setStyleSheet("QLabel {color : blue; }"); ui_->label_stereo_flowOutliers_name->setStyleSheet("QLabel {color : red; }"); ui_->label_stereo_slopeOutliers_name->setStyleSheet("QLabel {color : yellow; }"); ui_->label_stereo_disparityOutliers_name->setStyleSheet("QLabel {color : magenta; }"); // connect configuration changed connect(ui_->graphViewer, SIGNAL(configChanged()), this, SLOT(configModified())); connect(ui_->graphicsView_A, SIGNAL(configChanged()), this, SLOT(configModified())); connect(ui_->graphicsView_B, SIGNAL(configChanged()), this, SLOT(configModified())); connect(ui_->comboBox_logger_level, SIGNAL(currentIndexChanged(int)), this, SLOT(configModified())); connect(ui_->actionVertical_Layout, SIGNAL(toggled(bool)), this, SLOT(configModified())); connect(ui_->checkBox_alignPosesWithGroundTruth, SIGNAL(stateChanged(int)), this, SLOT(updateGraphView())); connect(ui_->checkBox_alignScansCloudsWithGroundTruth, SIGNAL(stateChanged(int)), this, SLOT(updateGraphView())); connect(ui_->checkBox_ignoreIntermediateNodes, SIGNAL(stateChanged(int)), this, SLOT(configModified())); connect(ui_->checkBox_ignoreIntermediateNodes, SIGNAL(stateChanged(int)), this, SLOT(updateGraphView())); connect(ui_->checkBox_timeStats, SIGNAL(stateChanged(int)), this, SLOT(configModified())); connect(ui_->checkBox_timeStats, SIGNAL(stateChanged(int)), this, SLOT(updateStatistics())); // Graph view connect(ui_->doubleSpinBox_gainCompensationRadius, SIGNAL(valueChanged(double)), this, SLOT(configModified())); connect(ui_->doubleSpinBox_voxelSize, SIGNAL(valueChanged(double)), this, SLOT(configModified())); connect(ui_->spinBox_decimation, SIGNAL(valueChanged(int)), this, SLOT(configModified())); connect(ui_->groupBox_posefiltering, SIGNAL(clicked(bool)), this, SLOT(configModified())); connect(ui_->doubleSpinBox_posefilteringRadius, SIGNAL(valueChanged(double)), this, SLOT(configModified())); connect(ui_->doubleSpinBox_posefilteringAngle, SIGNAL(valueChanged(double)), this, SLOT(configModified())); connect(ui_->spinBox_icp_decimation, SIGNAL(valueChanged(int)), this, SLOT(configModified())); connect(ui_->doubleSpinBox_icp_maxDepth, SIGNAL(valueChanged(double)), this, SLOT(configModified())); connect(ui_->doubleSpinBox_icp_minDepth, SIGNAL(valueChanged(double)), this, SLOT(configModified())); connect(ui_->checkBox_icp_from_depth, SIGNAL(stateChanged(int)), this, SLOT(configModified())); connect(ui_->doubleSpinBox_detectMore_radius, SIGNAL(valueChanged(double)), this, SLOT(configModified())); connect(ui_->doubleSpinBox_detectMore_angle, SIGNAL(valueChanged(double)), this, SLOT(configModified())); connect(ui_->spinBox_detectMore_iterations, SIGNAL(valueChanged(int)), this, SLOT(configModified())); connect(ui_->checkBox_detectMore_intraSession, SIGNAL(stateChanged(int)), this, SLOT(configModified())); connect(ui_->checkBox_detectMore_interSession, SIGNAL(stateChanged(int)), this, SLOT(configModified())); connect(ui_->lineEdit_obstacleColor, SIGNAL(textChanged(const QString &)), this, SLOT(configModified())); connect(ui_->lineEdit_groundColor, SIGNAL(textChanged(const QString &)), this, SLOT(configModified())); connect(ui_->lineEdit_emptyColor, SIGNAL(textChanged(const QString &)), this, SLOT(configModified())); connect(ui_->lineEdit_obstacleColor, SIGNAL(textChanged(const QString &)), this, SLOT(updateGrid())); connect(ui_->lineEdit_groundColor, SIGNAL(textChanged(const QString &)), this, SLOT(updateGrid())); connect(ui_->lineEdit_emptyColor, SIGNAL(textChanged(const QString &)), this, SLOT(updateGrid())); connect(ui_->toolButton_obstacleColor, SIGNAL(clicked(bool)), this, SLOT(selectObstacleColor())); connect(ui_->toolButton_groundColor, SIGNAL(clicked(bool)), this, SLOT(selectGroundColor())); connect(ui_->toolButton_emptyColor, SIGNAL(clicked(bool)), this, SLOT(selectEmptyColor())); connect(ui_->spinBox_cropRadius, SIGNAL(valueChanged(int)), this, SLOT(configModified())); connect(exportDialog_, SIGNAL(configChanged()), this, SLOT(configModified())); // dockwidget QList dockWidgets = this->findChildren(); for(int i=0; itoggleViewAction(), SIGNAL(toggled(bool)), this, SLOT(configModified())); } ui_->dockWidget_constraints->installEventFilter(this); ui_->dockWidget_graphView->installEventFilter(this); ui_->dockWidget_occupancyGridView->installEventFilter(this); ui_->dockWidget_stereoView->installEventFilter(this); ui_->dockWidget_view3d->installEventFilter(this); ui_->dockWidget_guiparameters->installEventFilter(this); ui_->dockWidget_coreparameters->installEventFilter(this); ui_->dockWidget_info->installEventFilter(this); ui_->dockWidget_statistics->installEventFilter(this); } DatabaseViewer::~DatabaseViewer() { delete ui_; delete dbDriver_; #ifdef RTABMAP_OCTOMAP delete octomap_; #endif } void DatabaseViewer::setupMainLayout(bool vertical) { if(vertical) { qobject_cast(ui_->horizontalLayout_imageViews->layout())->setDirection(QBoxLayout::TopToBottom); } else if(!vertical) { qobject_cast(ui_->horizontalLayout_imageViews->layout())->setDirection(QBoxLayout::LeftToRight); } if(ids_.size()) { sliderAValueChanged(ui_->horizontalSlider_A->value()); // update matching lines } } void DatabaseViewer::showCloseButton(bool visible) { ui_->buttonBox->setVisible(visible); } void DatabaseViewer::configModified() { this->setWindowModified(true); } QString DatabaseViewer::getIniFilePath() const { if(!iniFilePath_.isEmpty()) { return iniFilePath_; } QString privatePath = QDir::homePath() + "/.rtabmap"; if(!QDir(privatePath).exists()) { QDir::home().mkdir(".rtabmap"); } return privatePath + "/rtabmap.ini"; } void DatabaseViewer::readSettings() { QString path = getIniFilePath(); QSettings settings(path, QSettings::IniFormat); settings.beginGroup("DatabaseViewer"); //load window state / geometry QByteArray bytes; bytes = settings.value("geometry", QByteArray()).toByteArray(); if(!bytes.isEmpty()) { this->restoreGeometry(bytes); } bytes = settings.value("state", QByteArray()).toByteArray(); if(!bytes.isEmpty()) { this->restoreState(bytes); } savedMaximized_ = settings.value("maximized", false).toBool(); ui_->comboBox_logger_level->setCurrentIndex(settings.value("loggerLevel", ui_->comboBox_logger_level->currentIndex()).toInt()); ui_->actionVertical_Layout->setChecked(settings.value("verticalLayout", ui_->actionVertical_Layout->isChecked()).toBool()); ui_->checkBox_ignoreIntermediateNodes->setChecked(settings.value("ignoreIntermediateNodes", ui_->checkBox_ignoreIntermediateNodes->isChecked()).toBool()); ui_->checkBox_timeStats->setChecked(settings.value("timeStats", ui_->checkBox_timeStats->isChecked()).toBool()); // GraphViewer settings ui_->graphViewer->loadSettings(settings, "GraphView"); settings.beginGroup("optimization"); ui_->doubleSpinBox_gainCompensationRadius->setValue(settings.value("gainCompensationRadius", ui_->doubleSpinBox_gainCompensationRadius->value()).toDouble()); ui_->doubleSpinBox_voxelSize->setValue(settings.value("voxelSize", ui_->doubleSpinBox_voxelSize->value()).toDouble()); ui_->spinBox_decimation->setValue(settings.value("decimation", ui_->spinBox_decimation->value()).toInt()); settings.endGroup(); settings.beginGroup("grid"); ui_->groupBox_posefiltering->setChecked(settings.value("poseFiltering", ui_->groupBox_posefiltering->isChecked()).toBool()); ui_->doubleSpinBox_posefilteringRadius->setValue(settings.value("poseFilteringRadius", ui_->doubleSpinBox_posefilteringRadius->value()).toDouble()); ui_->doubleSpinBox_posefilteringAngle->setValue(settings.value("poseFilteringAngle", ui_->doubleSpinBox_posefilteringAngle->value()).toDouble()); ui_->lineEdit_obstacleColor->setText(settings.value("colorObstacle", ui_->lineEdit_obstacleColor->text()).toString()); ui_->lineEdit_groundColor->setText(settings.value("colorGround", ui_->lineEdit_groundColor->text()).toString()); ui_->lineEdit_emptyColor->setText(settings.value("colorEmpty", ui_->lineEdit_emptyColor->text()).toString()); ui_->spinBox_cropRadius->setValue(settings.value("cropRadius", ui_->spinBox_cropRadius->value()).toInt()); settings.endGroup(); settings.beginGroup("mesh"); ui_->checkBox_mesh_quad->setChecked(settings.value("quad", ui_->checkBox_mesh_quad->isChecked()).toBool()); ui_->spinBox_mesh_angleTolerance->setValue(settings.value("angleTolerance", ui_->spinBox_mesh_angleTolerance->value()).toInt()); ui_->spinBox_mesh_minClusterSize->setValue(settings.value("minClusterSize", ui_->spinBox_mesh_minClusterSize->value()).toInt()); ui_->spinBox_mesh_fillDepthHoles->setValue(settings.value("fillDepthHolesSize", ui_->spinBox_mesh_fillDepthHoles->value()).toInt()); ui_->spinBox_mesh_depthError->setValue(settings.value("fillDepthHolesError", ui_->spinBox_mesh_depthError->value()).toInt()); ui_->spinBox_mesh_triangleSize->setValue(settings.value("triangleSize", ui_->spinBox_mesh_triangleSize->value()).toInt()); settings.endGroup(); // ImageViews ui_->graphicsView_A->loadSettings(settings, "ImageViewA"); ui_->graphicsView_B->loadSettings(settings, "ImageViewB"); // ICP parameters settings.beginGroup("icp"); ui_->spinBox_icp_decimation->setValue(settings.value("decimation", ui_->spinBox_icp_decimation->value()).toInt()); ui_->doubleSpinBox_icp_maxDepth->setValue(settings.value("maxDepth", ui_->doubleSpinBox_icp_maxDepth->value()).toDouble()); ui_->doubleSpinBox_icp_minDepth->setValue(settings.value("minDepth", ui_->doubleSpinBox_icp_minDepth->value()).toDouble()); ui_->checkBox_icp_from_depth->setChecked(settings.value("icpFromDepth", ui_->checkBox_icp_from_depth->isChecked()).toBool()); settings.endGroup(); settings.endGroup(); // DatabaseViewer // Use same parameters used by RTAB-Map settings.beginGroup("Gui"); exportDialog_->loadSettings(settings, exportDialog_->objectName()); settings.beginGroup("PostProcessingDialog"); ui_->doubleSpinBox_detectMore_radius->setValue(settings.value("cluster_radius", ui_->doubleSpinBox_detectMore_radius->value()).toDouble()); ui_->doubleSpinBox_detectMore_angle->setValue(settings.value("cluster_angle", ui_->doubleSpinBox_detectMore_angle->value()).toDouble()); ui_->spinBox_detectMore_iterations->setValue(settings.value("iterations", ui_->spinBox_detectMore_iterations->value()).toInt()); ui_->checkBox_detectMore_intraSession->setChecked(settings.value("intra_session", ui_->checkBox_detectMore_intraSession->isChecked()).toBool()); ui_->checkBox_detectMore_interSession->setChecked(settings.value("inter_session", ui_->checkBox_detectMore_interSession->isChecked()).toBool()); settings.endGroup(); settings.endGroup(); ParametersMap parameters; Parameters::readINI(path.toStdString(), parameters); for(ParametersMap::iterator iter = parameters.begin(); iter!= parameters.end(); ++iter) { ui_->parameters_toolbox->updateParameter(iter->first, iter->second); } } void DatabaseViewer::writeSettings() { QString path = getIniFilePath(); QSettings settings(path, QSettings::IniFormat); settings.beginGroup("DatabaseViewer"); //save window state / geometry if(!this->isMaximized()) { settings.setValue("geometry", this->saveGeometry()); } settings.setValue("state", this->saveState()); settings.setValue("maximized", this->isMaximized()); savedMaximized_ = this->isMaximized(); settings.setValue("loggerLevel", ui_->comboBox_logger_level->currentIndex()); settings.setValue("verticalLayout", ui_->actionVertical_Layout->isChecked()); settings.setValue("ignoreIntermediateNodes", ui_->checkBox_ignoreIntermediateNodes->isChecked()); settings.setValue("timeStats", ui_->checkBox_timeStats->isChecked()); // save GraphViewer settings ui_->graphViewer->saveSettings(settings, "GraphView"); // save optimization settings settings.beginGroup("optimization"); settings.setValue("gainCompensationRadius", ui_->doubleSpinBox_gainCompensationRadius->value()); settings.setValue("voxelSize", ui_->doubleSpinBox_voxelSize->value()); settings.setValue("decimation", ui_->spinBox_decimation->value()); settings.endGroup(); // save Grid settings settings.beginGroup("grid"); settings.setValue("poseFiltering", ui_->groupBox_posefiltering->isChecked()); settings.setValue("poseFilteringRadius", ui_->doubleSpinBox_posefilteringRadius->value()); settings.setValue("poseFilteringAngle", ui_->doubleSpinBox_posefilteringAngle->value()); settings.setValue("colorObstacle", ui_->lineEdit_obstacleColor->text()); settings.setValue("colorGround", ui_->lineEdit_groundColor->text()); settings.setValue("colorEmpty", ui_->lineEdit_emptyColor->text()); settings.setValue("cropRadius", ui_->spinBox_cropRadius->value()); settings.endGroup(); settings.beginGroup("mesh"); settings.setValue("quad", ui_->checkBox_mesh_quad->isChecked()); settings.setValue("angleTolerance", ui_->spinBox_mesh_angleTolerance->value()); settings.setValue("minClusterSize", ui_->spinBox_mesh_minClusterSize->value()); settings.setValue("fillDepthHolesSize", ui_->spinBox_mesh_fillDepthHoles->value()); settings.setValue("fillDepthHolesError", ui_->spinBox_mesh_depthError->value()); settings.setValue("triangleSize", ui_->spinBox_mesh_triangleSize->value()); settings.endGroup(); // ImageViews ui_->graphicsView_A->saveSettings(settings, "ImageViewA"); ui_->graphicsView_B->saveSettings(settings, "ImageViewB"); // save ICP parameters settings.beginGroup("icp"); settings.setValue("decimation", ui_->spinBox_icp_decimation->value()); settings.setValue("maxDepth", ui_->doubleSpinBox_icp_maxDepth->value()); settings.setValue("minDepth", ui_->doubleSpinBox_icp_minDepth->value()); settings.setValue("icpFromDepth", ui_->checkBox_icp_from_depth->isChecked()); settings.endGroup(); settings.endGroup(); // DatabaseViewer // Use same parameters used by RTAB-Map settings.beginGroup("Gui"); exportDialog_->saveSettings(settings, exportDialog_->objectName()); settings.beginGroup("PostProcessingDialog"); settings.setValue("cluster_radius", ui_->doubleSpinBox_detectMore_radius->value()); settings.setValue("cluster_angle", ui_->doubleSpinBox_detectMore_angle->value()); settings.setValue("iterations", ui_->spinBox_detectMore_iterations->value()); settings.setValue("intra_session", ui_->checkBox_detectMore_intraSession->isChecked()); settings.setValue("inter_session", ui_->checkBox_detectMore_interSession->isChecked()); settings.endGroup(); settings.endGroup(); ParametersMap parameters = ui_->parameters_toolbox->getParameters(); for(ParametersMap::iterator iter=parameters.begin(); iter!=parameters.end();) { if(!ui_->parameters_toolbox->getParameterWidget(iter->first.c_str())) { parameters.erase(iter++); } else { ++iter; } } Parameters::writeINI(path.toStdString(), parameters); this->setWindowModified(false); } void DatabaseViewer::restoreDefaultSettings() { // reset GUI parameters ui_->comboBox_logger_level->setCurrentIndex(1); ui_->checkBox_alignPosesWithGroundTruth->setChecked(true); ui_->checkBox_alignScansCloudsWithGroundTruth->setChecked(false); ui_->checkBox_ignoreIntermediateNodes->setChecked(false); ui_->checkBox_timeStats->setChecked(true); ui_->checkBox_iterativeOptimization->setChecked(true); ui_->checkBox_spanAllMaps->setChecked(true); ui_->checkBox_wmState->setChecked(false); ui_->checkBox_ignorePoseCorrection->setChecked(false); ui_->checkBox_ignoreGlobalLoop->setChecked(false); ui_->checkBox_ignoreLocalLoopSpace->setChecked(false); ui_->checkBox_ignoreLocalLoopTime->setChecked(false); ui_->checkBox_ignoreUserLoop->setChecked(false); ui_->doubleSpinBox_optimizationScale->setValue(1.0); ui_->doubleSpinBox_gainCompensationRadius->setValue(0.0); ui_->doubleSpinBox_voxelSize->setValue(0.0); ui_->spinBox_decimation->setValue(1); ui_->groupBox_posefiltering->setChecked(false); ui_->doubleSpinBox_posefilteringRadius->setValue(0.1); ui_->doubleSpinBox_posefilteringAngle->setValue(30); ui_->checkBox_grid_empty->setChecked(true); ui_->checkBox_octomap->setChecked(false); ui_->lineEdit_obstacleColor->setText(QColor(Qt::red).name()); ui_->lineEdit_groundColor->setText(QColor(Qt::green).name()); ui_->lineEdit_emptyColor->setText(QColor(Qt::yellow).name()); ui_->spinBox_cropRadius->setValue(1); ui_->checkBox_mesh_quad->setChecked(true); ui_->spinBox_mesh_angleTolerance->setValue(15); ui_->spinBox_mesh_minClusterSize->setValue(0); ui_->spinBox_mesh_fillDepthHoles->setValue(false); ui_->spinBox_mesh_depthError->setValue(10); ui_->spinBox_mesh_triangleSize->setValue(2); ui_->spinBox_icp_decimation->setValue(1); ui_->doubleSpinBox_icp_maxDepth->setValue(0.0); ui_->doubleSpinBox_icp_minDepth->setValue(0.0); ui_->checkBox_icp_from_depth->setChecked(false); ui_->doubleSpinBox_detectMore_radius->setValue(1.0); ui_->doubleSpinBox_detectMore_angle->setValue(30.0); ui_->spinBox_detectMore_iterations->setValue(5); ui_->checkBox_detectMore_intraSession->setChecked(true); ui_->checkBox_detectMore_interSession->setChecked(true); } void DatabaseViewer::openDatabase() { QString path = QFileDialog::getOpenFileName(this, tr("Select file"), pathDatabase_, tr("Databases (*.db)")); if(!path.isEmpty()) { openDatabase(path); } } bool DatabaseViewer::openDatabase(const QString & path) { UDEBUG("Open database \"%s\"", path.toStdString().c_str()); if(QFile::exists(path)) { if(QFileInfo(path).isFile()) { std::string driverType = "sqlite3"; dbDriver_ = DBDriver::create(); if(!dbDriver_->openConnection(path.toStdString())) { ui_->actionClose_database->setEnabled(false); ui_->actionOpen_database->setEnabled(true); delete dbDriver_; dbDriver_ = 0; QMessageBox::warning(this, "Database error", tr("Can't open database \"%1\"").arg(path)); } else { ui_->actionClose_database->setEnabled(true); ui_->actionOpen_database->setEnabled(false); pathDatabase_ = UDirectory::getDir(path.toStdString()).c_str(); if(pathDatabase_.isEmpty() || pathDatabase_.compare(".") == 0) { pathDatabase_ = QDir::currentPath(); } databaseFileName_ = UFile::getName(path.toStdString()); ui_->graphViewer->setWorkingDirectory(pathDatabase_); // look if there are saved parameters ParametersMap parameters = dbDriver_->getLastParameters(); if(parameters.size()) { const ParametersMap & currentParameters = ui_->parameters_toolbox->getParameters(); ParametersMap differentParameters; for(ParametersMap::iterator iter=parameters.begin(); iter!=parameters.end(); ++iter) { ParametersMap::const_iterator jter = currentParameters.find(iter->first); if(jter!=currentParameters.end() && ui_->parameters_toolbox->getParameterWidget(QString(iter->first.c_str())) != 0 && iter->second.compare(jter->second) != 0 && iter->first.compare(Parameters::kRtabmapWorkingDirectory()) != 0) { bool different = true; if(Parameters::getType(iter->first).compare("double") ==0 || Parameters::getType(iter->first).compare("float") == 0) { if(uStr2Double(iter->second) == uStr2Double(jter->second)) { different = false; } } if(different) { differentParameters.insert(*iter); QString msg = tr("Parameter \"%1\": database=\"%2\" Preferences=\"%3\"") .arg(iter->first.c_str()) .arg(iter->second.c_str()) .arg(jter->second.c_str()); UWARN(msg.toStdString().c_str()); } } } if(differentParameters.size()) { int r = QMessageBox::question(this, tr("Update parameters..."), tr("The database is using %1 different parameter(s) than " "those currently set in Core parameters panel. Do you want " "to use database's parameters?").arg(differentParameters.size()), QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes); if(r == QMessageBox::Yes) { QStringList str; for(rtabmap::ParametersMap::const_iterator iter = differentParameters.begin(); iter!=differentParameters.end(); ++iter) { ui_->parameters_toolbox->updateParameter(iter->first, iter->second); str.push_back(iter->first.c_str()); } notifyParametersChanged(str); } } } updateIds(); return true; } } else // directory { pathDatabase_ = path; if(pathDatabase_.isEmpty() || pathDatabase_.compare(".") == 0) { pathDatabase_ = QDir::currentPath(); } ui_->graphViewer->setWorkingDirectory(pathDatabase_); } } else { QMessageBox::warning(this, "Database error", tr("Database \"%1\" does not exist.").arg(path)); } return false; } bool DatabaseViewer::closeDatabase() { if(dbDriver_) { if(linksAdded_.size() || linksRefined_.size() || linksRemoved_.size()) { QMessageBox::StandardButton button = QMessageBox::question(this, tr("Links modified"), tr("Some links are modified (%1 added, %2 refined, %3 removed), do you want to save them?") .arg(linksAdded_.size()).arg(linksRefined_.size()).arg(linksRemoved_.size()), QMessageBox::Cancel | QMessageBox::Yes | QMessageBox::No, QMessageBox::Cancel); if(button == QMessageBox::Yes) { // Added links for(std::multimap::iterator iter=linksAdded_.begin(); iter!=linksAdded_.end(); ++iter) { std::multimap::iterator refinedIter = rtabmap::graph::findLink(linksRefined_, iter->second.from(), iter->second.to()); if(refinedIter != linksRefined_.end()) { dbDriver_->addLink(refinedIter->second); dbDriver_->addLink(refinedIter->second.inverse()); } else { dbDriver_->addLink(iter->second); dbDriver_->addLink(iter->second.inverse()); } } //Refined links for(std::multimap::iterator iter=linksRefined_.begin(); iter!=linksRefined_.end(); ++iter) { if(!containsLink(linksAdded_, iter->second.from(), iter->second.to())) { dbDriver_->updateLink(iter->second); dbDriver_->updateLink(iter->second.inverse()); } } // Rejected links for(std::multimap::iterator iter=linksRemoved_.begin(); iter!=linksRemoved_.end(); ++iter) { dbDriver_->removeLink(iter->second.to(), iter->second.from()); dbDriver_->removeLink(iter->second.from(), iter->second.to()); } linksAdded_.clear(); linksRefined_.clear(); linksRemoved_.clear(); // Clear the optimized poses, this will force rtabmap to re-optimize the graph on initialization Transform lastLocalizationPose; if(!dbDriver_->loadOptimizedPoses(&lastLocalizationPose).empty()) { dbDriver_->saveOptimizedPoses(std::map(), lastLocalizationPose); } // This will force rtabmap_ros to regenerate the global occupancy grid if there was one dbDriver_->save2DMap(cv::Mat(), 0, 0, 0); dbDriver_->saveOptimizedMesh(cv::Mat()); } if(button != QMessageBox::Yes && button != QMessageBox::No) { return false; } } if( generatedLocalMaps_.size() && uStrNumCmp(dbDriver_->getDatabaseVersion(), "0.11.10") >= 0) { QMessageBox::StandardButton button = QMessageBox::question(this, tr("Local occupancy grid maps modified"), tr("%1 occupancy grid maps are modified, do you want to " "save them? This will overwrite occupancy grids saved in the database.") .arg(generatedLocalMaps_.size()), QMessageBox::Cancel | QMessageBox::Yes | QMessageBox::No, QMessageBox::Cancel); if(button == QMessageBox::Yes) { UASSERT(generatedLocalMaps_.size() == generatedLocalMapsInfo_.size()); std::map, cv::Mat > >::iterator mapIter = generatedLocalMaps_.begin(); std::map >::iterator infoIter = generatedLocalMapsInfo_.begin(); for(; mapIter!=generatedLocalMaps_.end(); ++mapIter, ++infoIter) { UASSERT(mapIter->first == infoIter->first); dbDriver_->updateOccupancyGrid( mapIter->first, mapIter->second.first.first, mapIter->second.first.second, mapIter->second.second, infoIter->second.first, infoIter->second.second); } generatedLocalMaps_.clear(); generatedLocalMapsInfo_.clear(); localMaps_.clear(); localMapsInfo_.clear(); // This will force rtabmap_ros to regenerate the global occupancy grid if there was one dbDriver_->save2DMap(cv::Mat(), 0, 0, 0); } if(button != QMessageBox::Yes && button != QMessageBox::No) { return false; } } if(!modifiedLaserScans_.empty()) { QMessageBox::StandardButton button = QMessageBox::question(this, tr("Laser scans modified"), tr("%1 laser scans are modified, do you want to " "save them? This will overwrite laser scans saved in the database.") .arg(modifiedLaserScans_.size()), QMessageBox::Cancel | QMessageBox::Yes | QMessageBox::No, QMessageBox::Cancel); if(button == QMessageBox::Yes) { for(std::map::iterator iter=modifiedLaserScans_.begin(); iter!=modifiedLaserScans_.end(); ++iter) { dbDriver_->updateLaserScan(iter->first, iter->second); } modifiedLaserScans_.clear(); } if(button != QMessageBox::Yes && button != QMessageBox::No) { return false; } } delete dbDriver_; dbDriver_ = 0; ids_.clear(); idToIndex_.clear(); neighborLinks_.clear(); loopLinks_.clear(); graphes_.clear(); graphLinks_.clear(); odomPoses_.clear(); groundTruthPoses_.clear(); gpsPoses_.clear(); gpsValues_.clear(); lastWmIds_.clear(); mapIds_.clear(); weights_.clear(); wmStates_.clear(); links_.clear(); linksAdded_.clear(); linksRefined_.clear(); linksRemoved_.clear(); localMaps_.clear(); localMapsInfo_.clear(); generatedLocalMaps_.clear(); generatedLocalMapsInfo_.clear(); modifiedLaserScans_.clear(); ui_->graphViewer->clearAll(); occupancyGridViewer_->clear(); ui_->menuEdit->setEnabled(false); ui_->actionGenerate_3D_map_pcd->setEnabled(false); ui_->actionExport->setEnabled(false); ui_->actionExtract_images->setEnabled(false); ui_->menuExport_poses->setEnabled(false); ui_->menuExport_GPS->setEnabled(false); ui_->actionPoses_KML->setEnabled(false); ui_->actionEdit_optimized_2D_map->setEnabled(false); ui_->actionExport_saved_2D_map->setEnabled(false); ui_->actionImport_2D_map->setEnabled(false); ui_->actionRegenerate_optimized_2D_map->setEnabled(false); ui_->actionView_optimized_mesh->setEnabled(false); ui_->actionExport_optimized_mesh->setEnabled(false); ui_->actionUpdate_optimized_mesh->setEnabled(false); ui_->checkBox_showOptimized->setEnabled(false); ui_->toolBox_statistics->clear(); databaseFileName_.clear(); ui_->checkBox_alignPosesWithGroundTruth->setVisible(false); ui_->checkBox_alignScansCloudsWithGroundTruth->setVisible(false); ui_->doubleSpinBox_optimizationScale->setVisible(false); ui_->label_scale_title->setVisible(false); ui_->label_rmse->setVisible(false); ui_->label_rmse_title->setVisible(false); ui_->checkBox_ignoreIntermediateNodes->setVisible(false); ui_->label_ignoreINtermediateNdoes->setVisible(false); ui_->label_alignPosesWithGroundTruth->setVisible(false); ui_->label_alignScansCloudsWithGroundTruth->setVisible(false); ui_->label_optimizeFrom->setText(tr("Root")); ui_->textEdit_info->clear(); ui_->pushButton_refine->setEnabled(false); ui_->pushButton_add->setEnabled(false); ui_->pushButton_reset->setEnabled(false); ui_->pushButton_reject->setEnabled(false); ui_->horizontalSlider_loops->setEnabled(false); ui_->horizontalSlider_loops->setMaximum(0); ui_->horizontalSlider_iterations->setEnabled(false); ui_->horizontalSlider_iterations->setMaximum(0); ui_->horizontalSlider_neighbors->setEnabled(false); ui_->horizontalSlider_neighbors->setMaximum(0); ui_->label_constraint->clear(); ui_->label_constraint_opt->clear(); ui_->label_variance->clear(); ui_->lineEdit_covariance->clear(); ui_->horizontalSlider_A->setEnabled(false); ui_->horizontalSlider_A->setMaximum(0); ui_->horizontalSlider_B->setEnabled(false); ui_->horizontalSlider_B->setMaximum(0); ui_->label_idA->setText("NaN"); ui_->label_idB->setText("NaN"); sliderAValueChanged(0); sliderBValueChanged(0); constraintsViewer_->clear(); constraintsViewer_->update(); cloudViewer_->clear(); cloudViewer_->update(); occupancyGridViewer_->clear(); occupancyGridViewer_->update(); ui_->graphViewer->clearAll(); ui_->label_loopClosures->clear(); ui_->label_timeOptimization->clear(); ui_->label_pathLength->clear(); ui_->label_poses->clear(); ui_->label_rmse->clear(); ui_->spinBox_optimizationsFrom->setEnabled(false); ui_->graphicsView_A->clear(); ui_->graphicsView_B->clear(); ui_->graphicsView_stereo->clear(); stereoViewer_->clear(); stereoViewer_->update(); ui_->toolBox_statistics->clear(); } ui_->actionClose_database->setEnabled(dbDriver_ != 0); ui_->actionOpen_database->setEnabled(dbDriver_ == 0); return dbDriver_ == 0; } void DatabaseViewer::recoverDatabase() { QString path = QFileDialog::getOpenFileName(this, tr("Select file"), pathDatabase_, tr("Databases (*.db)")); if(!path.isEmpty()) { if(path.compare(pathDatabase_+QDir::separator()+databaseFileName_.c_str()) == 0) { QMessageBox::information(this, "Database recovery", tr("The selected database is already opened, close it first.")); return; } std::string errorMsg; rtabmap::ProgressDialog * progressDialog = new rtabmap::ProgressDialog(this); progressDialog->setAttribute(Qt::WA_DeleteOnClose); progressDialog->setMaximumSteps(100); progressDialog->show(); progressDialog->setCancelButtonVisible(true); RecoveryState state(progressDialog); if(databaseRecovery(path.toStdString(), false, &errorMsg, &state)) { QMessageBox::information(this, "Database recovery", tr("Database \"%1\" recovered! Try opening it again.").arg(path)); } else { QMessageBox::warning(this, "Database recovery", tr("Database recovery failed: \"%1\".").arg(errorMsg.c_str())); } progressDialog->setValue(progressDialog->maximumSteps()); } } void DatabaseViewer::closeEvent(QCloseEvent* event) { //write settings before quit? bool save = false; if(this->isWindowModified()) { QMessageBox::Button b=QMessageBox::question(this, tr("Database Viewer"), tr("There are unsaved changed settings. Save them?"), QMessageBox::Save | QMessageBox::Cancel | QMessageBox::Discard); if(b == QMessageBox::Save) { save = true; } else if(b != QMessageBox::Discard) { event->ignore(); return; } } if(save) { writeSettings(); } event->accept(); if(!closeDatabase()) { event->ignore(); } if(event->isAccepted()) { ui_->toolBox_statistics->closeFigures(); if(dbDriver_) { delete dbDriver_; dbDriver_ = 0; } } } void DatabaseViewer::showEvent(QShowEvent* anEvent) { this->setWindowModified(false); if((ui_->graphViewer->isVisible() || ui_->dockWidget_occupancyGridView->isVisible()) && graphes_.size() && localMaps_.size()==0) { sliderIterationsValueChanged((int)graphes_.size()-1); } } void DatabaseViewer::moveEvent(QMoveEvent* anEvent) { if(this->isVisible()) { // HACK, there is a move event when the window is shown the first time. if(!firstCall_) { this->configModified(); } firstCall_ = false; } } void DatabaseViewer::resizeEvent(QResizeEvent* anEvent) { if(this->isVisible()) { this->configModified(); } } void DatabaseViewer::keyPressEvent(QKeyEvent *event) { //catch ctrl-s to save settings if((event->modifiers() & Qt::ControlModifier) && event->key() == Qt::Key_S) { this->writeSettings(); } } bool DatabaseViewer::eventFilter(QObject *obj, QEvent *event) { if (event->type() == QEvent::Resize && qobject_cast(obj)) { this->setWindowModified(true); } return QWidget::eventFilter(obj, event); } void DatabaseViewer::exportDatabase() { if(!dbDriver_ || ids_.size() == 0) { return; } rtabmap::ExportDialog dialog; if(dialog.exec()) { if(!dialog.outputPath().isEmpty()) { int framesIgnored = dialog.framesIgnored(); double frameRate = dialog.targetFramerate(); int sessionExported = dialog.sessionExported(); QString path = dialog.outputPath(); rtabmap::DataRecorder recorder; QList ids; double previousStamp = 0; std::vector delays(ids_.size()); int oi=0; std::map poses; std::map stamps; std::map groundTruths; std::map gpsValues; std::map sensorsValues; for(int i=0; i velocity; GPS gps; EnvSensors sensors; if(dbDriver_->getNodeInfo(ids_[i], odomPose, mapId, weight, label, stamp, groundTruth, velocity, gps, sensors)) { if(frameRate == 0 || previousStamp == 0 || stamp == 0 || stamp - previousStamp >= 1.0/frameRate) { if(sessionExported < 0 || sessionExported == mapId) { ids.push_back(ids_[i]); if(previousStamp && stamp) { delays[oi++] = stamp - previousStamp; } previousStamp = stamp; poses.insert(std::make_pair(ids_[i], odomPose)); stamps.insert(std::make_pair(ids_[i], stamp)); groundTruths.insert(std::make_pair(ids_[i], groundTruth)); if(gps.stamp() > 0.0) { gpsValues.insert(std::make_pair(ids_[i], gps)); } if(sensors.size()) { sensorsValues.insert(std::make_pair(ids_[i], sensors)); } } } if(sessionExported >= 0 && mapId > sessionExported) { break; } } } delays.resize(oi); if(recorder.init(path, false)) { rtabmap::ProgressDialog * progressDialog = new rtabmap::ProgressDialog(this); progressDialog->setAttribute(Qt::WA_DeleteOnClose); progressDialog->setMaximumSteps(ids.size()); progressDialog->show(); progressDialog->setCancelButtonVisible(true); UINFO("Decompress: rgb=%d depth=%d scan=%d userData=%d", dialog.isRgbExported()?1:0, dialog.isDepthExported()?1:0, dialog.isDepth2dExported()?1:0, dialog.isUserDataExported()?1:0); for(int i=0; iisCanceled(); ++i) { int id = ids.at(i); SensorData data; dbDriver_->getNodeData(id, data); cv::Mat depth, rgb, userData; LaserScan scan; data.uncompressDataConst( !dialog.isRgbExported()?0:&rgb, !dialog.isDepthExported()?0:&depth, !dialog.isDepth2dExported()?0:&scan, !dialog.isUserDataExported()?0:&userData); cv::Mat covariance = cv::Mat::eye(6,6,CV_64FC1); if(dialog.isOdomExported()) { std::multimap links; dbDriver_->loadLinks(id, links, Link::kNeighbor); if(links.size() && links.begin()->first < id) { covariance = links.begin()->second.infMatrix().inv(); } } rtabmap::SensorData sensorData; if(data.cameraModels().size()) { sensorData = rtabmap::SensorData( scan, rgb, depth, data.cameraModels(), id, stamps.at(id), userData); } else { sensorData = rtabmap::SensorData( scan, rgb, depth, data.stereoCameraModel(), id, stamps.at(id), userData); } if(groundTruths.find(id)!=groundTruths.end()) { sensorData.setGroundTruth(groundTruths.at(id)); } if(gpsValues.find(id)!=gpsValues.end()) { sensorData.setGPS(gpsValues.at(id)); } if(sensorsValues.find(id)!=sensorsValues.end()) { sensorData.setEnvSensors(sensorsValues.at(id)); } recorder.addData(sensorData, dialog.isOdomExported()?poses.at(id):Transform(), covariance); progressDialog->appendText(tr("Exported node %1").arg(id)); progressDialog->incrementStep(); QApplication::processEvents(); } progressDialog->setValue(progressDialog->maximumSteps()); if(delays.size()) { progressDialog->appendText(tr("Average frame rate=%1 Hz (Min=%2, Max=%3)") .arg(1.0/uMean(delays)).arg(1.0/uMax(delays)).arg(1.0/uMin(delays))); } progressDialog->appendText(tr("Export finished to \"%1\"!").arg(path)); } else { UERROR("DataRecorder init failed?!"); } } else { QMessageBox::warning(this, tr("Cannot export database"), tr("An output path must be set!")); } } } void DatabaseViewer::extractImages() { if(!dbDriver_ || ids_.size() == 0) { return; } QStringList formats; formats.push_back("jpg"); formats.push_back("png"); bool ok; QString ext = QInputDialog::getItem(this, tr("Which RGB format?"), tr("Format:"), formats, 0, false, &ok); if(!ok) { return; } QString path = QFileDialog::getExistingDirectory(this, tr("Select directory where to save images..."), QDir::homePath()); if(!path.isEmpty()) { if(ids_.size()) { int id = ids_.at(0); SensorData data; dbDriver_->getNodeData(id, data); data.uncompressData(); if(!data.imageRaw().empty() && !data.rightRaw().empty()) { QDir dir; dir.mkdir(QString("%1/left").arg(path)); dir.mkdir(QString("%1/right").arg(path)); if(databaseFileName_.empty()) { UERROR("Cannot save calibration file, database name is empty!"); } else if(data.stereoCameraModel().isValidForProjection()) { std::string cameraName = uSplit(databaseFileName_, '.').front(); StereoCameraModel model( cameraName, data.imageRaw().size(), data.stereoCameraModel().left().K(), data.stereoCameraModel().left().D(), data.stereoCameraModel().left().R(), data.stereoCameraModel().left().P(), data.rightRaw().size(), data.stereoCameraModel().right().K(), data.stereoCameraModel().right().D(), data.stereoCameraModel().right().R(), data.stereoCameraModel().right().P(), data.stereoCameraModel().R(), data.stereoCameraModel().T(), data.stereoCameraModel().E(), data.stereoCameraModel().F(), data.stereoCameraModel().left().localTransform()); if(model.save(path.toStdString())) { UINFO("Saved stereo calibration \"%s\"", (path.toStdString()+"/"+cameraName).c_str()); } else { UERROR("Failed saving calibration \"%s\"", (path.toStdString()+"/"+cameraName).c_str()); } } } else if(!data.imageRaw().empty()) { if(!data.depthRaw().empty()) { QDir dir; dir.mkdir(QString("%1/rgb").arg(path)); dir.mkdir(QString("%1/depth").arg(path)); } if(databaseFileName_.empty()) { UERROR("Cannot save calibration file, database name is empty!"); } else if(data.cameraModels().size() > 1) { UERROR("Only one camera calibration can be saved at this time (%d detected)", (int)data.cameraModels().size()); } else if(data.cameraModels().size() == 1 && data.cameraModels().front().isValidForProjection()) { std::string cameraName = uSplit(databaseFileName_, '.').front(); CameraModel model(cameraName, data.imageRaw().size(), data.cameraModels().front().K(), data.cameraModels().front().D(), data.cameraModels().front().R(), data.cameraModels().front().P(), data.cameraModels().front().localTransform()); if(model.save(path.toStdString())) { UINFO("Saved calibration \"%s\"", (path.toStdString()+"/"+cameraName).c_str()); } else { UERROR("Failed saving calibration \"%s\"", (path.toStdString()+"/"+cameraName).c_str()); } } } } int imagesExported = 0; for(int i=0; igetNodeData(id, data); data.uncompressData(); if(!data.imageRaw().empty() && !data.rightRaw().empty()) { cv::imwrite(QString("%1/left/%2.%3").arg(path).arg(id).arg(ext).toStdString(), data.imageRaw()); cv::imwrite(QString("%1/right/%2.%3").arg(path).arg(id).arg(ext).toStdString(), data.rightRaw()); UINFO(QString("Saved left/%1.%2 and right/%1.%2").arg(id).arg(ext).toStdString().c_str()); ++imagesExported; } else if(!data.imageRaw().empty() && !data.depthRaw().empty()) { cv::imwrite(QString("%1/rgb/%2.%3").arg(path).arg(id).arg(ext).toStdString(), data.imageRaw()); cv::imwrite(QString("%1/depth/%2.png").arg(path).arg(id).toStdString(), data.depthRaw().type()==CV_32FC1?util2d::cvtDepthFromFloat(data.depthRaw()):data.depthRaw()); UINFO(QString("Saved rgb/%1.%2 and depth/%1.png").arg(id).arg(ext).toStdString().c_str()); ++imagesExported; } else if(!data.imageRaw().empty()) { cv::imwrite(QString("%1/%2.%3").arg(path).arg(id).arg(ext).toStdString(), data.imageRaw()); UINFO(QString("Saved %1.%2").arg(id).arg(ext).toStdString().c_str()); ++imagesExported; } } QMessageBox::information(this, tr("Exporting"), tr("%1 images exported!").arg(imagesExported)); } } void DatabaseViewer::updateIds() { if(!dbDriver_) { return; } rtabmap::ProgressDialog * progressDialog = new rtabmap::ProgressDialog(this); progressDialog->setAttribute(Qt::WA_DeleteOnClose); int progressSteps = 5; if(ui_->graphViewer->isVisible() || ui_->dockWidget_occupancyGridView->isVisible()) { ++progressSteps; } if(ui_->textEdit_info->isVisible()) { ++progressSteps; } if(ui_->toolBox_statistics->isVisible()) { ++progressSteps; } progressDialog->setMaximumSteps(progressSteps); progressDialog->show(); progressDialog->setCancelButtonVisible(false); progressDialog->appendText(tr("Loading all ids...")); QApplication::processEvents(); uSleep(100); QApplication::processEvents(); UINFO("Loading all IDs..."); std::set ids; dbDriver_->getAllNodeIds(ids); ids_ = QList::fromStdList(std::list(ids.begin(), ids.end())); lastWmIds_.clear(); dbDriver_->getLastNodeIds(lastWmIds_); idToIndex_.clear(); mapIds_.clear(); weights_.clear(); wmStates_.clear(); odomPoses_.clear(); groundTruthPoses_.clear(); gpsPoses_.clear(); gpsValues_.clear(); lastSliderIndexBrowsed_ = 0; ui_->checkBox_wmState->setVisible(false); ui_->checkBox_alignPosesWithGroundTruth->setVisible(false); ui_->checkBox_alignScansCloudsWithGroundTruth->setVisible(false); ui_->doubleSpinBox_optimizationScale->setVisible(false); ui_->label_scale_title->setVisible(false); ui_->label_rmse->setVisible(false); ui_->label_rmse_title->setVisible(false); ui_->checkBox_ignoreIntermediateNodes->setVisible(false); ui_->label_ignoreINtermediateNdoes->setVisible(false); ui_->label_alignPosesWithGroundTruth->setVisible(false); ui_->label_alignScansCloudsWithGroundTruth->setVisible(false); ui_->menuEdit->setEnabled(true); ui_->actionGenerate_3D_map_pcd->setEnabled(true); ui_->actionExport->setEnabled(true); ui_->actionExtract_images->setEnabled(true); ui_->menuExport_poses->setEnabled(false); ui_->menuExport_GPS->setEnabled(false); ui_->actionPoses_KML->setEnabled(false); ui_->actionEdit_optimized_2D_map->setEnabled(false); ui_->actionExport_saved_2D_map->setEnabled(false); ui_->actionImport_2D_map->setEnabled(false); ui_->actionRegenerate_optimized_2D_map->setEnabled(false); ui_->actionView_optimized_mesh->setEnabled(false); ui_->actionExport_optimized_mesh->setEnabled(false); ui_->actionUpdate_optimized_mesh->setEnabled(uStrNumCmp(dbDriver_->getDatabaseVersion(), "0.13.0") >= 0); links_.clear(); linksAdded_.clear(); linksRefined_.clear(); linksRemoved_.clear(); ui_->toolBox_statistics->clear(); ui_->label_optimizeFrom->setText(tr("Root")); progressDialog->appendText(tr("%1 ids loaded!").arg(ids.size())); progressDialog->incrementStep(); progressDialog->appendText(tr("Loading all links...")); QApplication::processEvents(); uSleep(100); QApplication::processEvents(); std::multimap unilinks; dbDriver_->getAllLinks(unilinks, true, true); UDEBUG("%d total links loaded", (int)unilinks.size()); // add both direction links std::multimap links; for(std::multimap::iterator iter=unilinks.begin(); iter!=unilinks.end(); ++iter) { links.insert(*iter); if(graph::findLink(unilinks, iter->second.to(), iter->second.from(), false) == unilinks.end()) { links.insert(std::make_pair(iter->second.to(), iter->second.inverse())); } } progressDialog->appendText(tr("%1 links loaded!").arg(unilinks.size())); progressDialog->incrementStep(); progressDialog->appendText("Loading Working Memory state..."); QApplication::processEvents(); uSleep(100); QApplication::processEvents(); infoTotalOdom_ = 0.0; Transform previousPose; infoSessions_ = ids_.size()?1:0; infoTotalTime_ = 0.0; double previousStamp = 0.0; infoReducedGraph_ = false; std::map > wmStates = dbDriver_->getAllStatisticsWmStates(); progressDialog->appendText("Loading Working Memory state... done!"); progressDialog->incrementStep(); progressDialog->appendText("Loading info for all nodes..."); QApplication::processEvents(); uSleep(100); QApplication::processEvents(); for(int i=0; i v; GPS gps; EnvSensors sensors; dbDriver_->getNodeInfo(ids_[i], p, mapId, w, l, s, g, v, gps, sensors); mapIds_.insert(std::make_pair(ids_[i], mapId)); weights_.insert(std::make_pair(ids_[i], w)); if(wmStates.find(ids_[i]) != wmStates.end()) { wmStates_.insert(std::make_pair(ids_[i], wmStates.at(ids_[i]))); ui_->checkBox_wmState->setVisible(true); } if(w < 0) { ui_->checkBox_ignoreIntermediateNodes->setVisible(true); ui_->label_ignoreINtermediateNdoes->setVisible(true); } if(i>0) { if(mapIds_.at(ids_[i-1]) == mapId) { if(!p.isNull() && !previousPose.isNull()) { infoTotalOdom_ += p.getDistance(previousPose); } if(previousStamp > 0.0 && s > 0.0) { infoTotalTime_ += s-previousStamp; } } else { ++infoSessions_; } } previousStamp=s; previousPose=p; //links bool addPose = links.find(ids_[i]) == links.end(); for(std::multimap::iterator jter=links.find(ids_[i]); jter!=links.end() && jter->first == ids_[i]; ++jter) { if(jter->second.type() == Link::kNeighborMerged) { infoReducedGraph_ = true; } std::multimap::iterator invertedLinkIter = graph::findLink(links, jter->second.to(), jter->second.from(), false); if( jter->second.isValid() && // null transform means a rehearsed location ids.find(jter->second.from()) != ids.end() && (ids.find(jter->second.to()) != ids.end() || jter->second.to()<0) && // to add landmark links graph::findLink(links_, jter->second.from(), jter->second.to()) == links_.end() && invertedLinkIter != links.end()) { // check if user_data is set in opposite direction if(jter->second.userDataCompressed().cols == 0 && invertedLinkIter->second.userDataCompressed().cols != 0) { links_.insert(std::make_pair(invertedLinkIter->second.from(), invertedLinkIter->second)); } else { links_.insert(std::make_pair(ids_[i], jter->second)); } addPose = true; } else if(graph::findLink(links_, jter->second.from(), jter->second.to()) != links_.end()) { addPose = true; } } if(addPose) { odomPoses_.insert(std::make_pair(ids_[i], p)); if(!g.isNull()) { groundTruthPoses_.insert(std::make_pair(ids_[i], g)); } if(gps.stamp() > 0.0) { gpsValues_.insert(std::make_pair(ids_[i], gps)); cv::Point3f p(0.0f,0.0f,0.0f); if(!gpsPoses_.empty()) { GeodeticCoords coords = gps.toGeodeticCoords(); GPS originGPS = gpsValues_.begin()->second; p = coords.toENU_WGS84(originGPS.toGeodeticCoords()); } Transform pose(p.x, p.y, p.z, 0.0f, 0.0f, (float)((-(gps.bearing()-90))*M_PI/180.0)); gpsPoses_.insert(std::make_pair(ids_[i], pose)); } } } progressDialog->appendText("Loading info for all nodes... done!"); progressDialog->incrementStep(); progressDialog->appendText("Loading optimized poses and maps..."); QApplication::processEvents(); uSleep(100); QApplication::processEvents(); if(!groundTruthPoses_.empty() || !gpsPoses_.empty()) { ui_->checkBox_alignPosesWithGroundTruth->setVisible(true); ui_->doubleSpinBox_optimizationScale->setVisible(true); ui_->label_scale_title->setVisible(true); ui_->label_rmse->setVisible(true); ui_->label_rmse_title->setVisible(true); ui_->label_alignPosesWithGroundTruth->setVisible(true); if(!groundTruthPoses_.empty()) { ui_->label_alignPosesWithGroundTruth->setText(tr("Align poses with ground truth")); ui_->checkBox_alignScansCloudsWithGroundTruth->setVisible(true); ui_->label_alignScansCloudsWithGroundTruth->setVisible(true); } else { ui_->label_alignPosesWithGroundTruth->setText(tr("Align poses with GPS")); } } if(!gpsValues_.empty()) { ui_->menuExport_GPS->setEnabled(true); ui_->actionPoses_KML->setEnabled(groundTruthPoses_.empty()); } float xMin, yMin, cellSize; bool hasMap = !dbDriver_->load2DMap(xMin, yMin, cellSize).empty(); ui_->actionEdit_optimized_2D_map->setEnabled(hasMap); ui_->actionExport_saved_2D_map->setEnabled(hasMap); ui_->actionImport_2D_map->setEnabled(hasMap); ui_->actionRegenerate_optimized_2D_map->setEnabled(uStrNumCmp(dbDriver_->getDatabaseVersion(), "0.17.0") >= 0); if(!dbDriver_->loadOptimizedMesh().empty()) { ui_->actionView_optimized_mesh->setEnabled(true); ui_->actionExport_optimized_mesh->setEnabled(true); } UINFO("Loaded %d ids, %d poses and %d links", (int)ids_.size(), (int)odomPoses_.size(), (int)links_.size()); progressDialog->appendText("Loading optimized poses and maps... done!"); progressDialog->incrementStep(); QApplication::processEvents(); uSleep(100); QApplication::processEvents(); if(ids_.size() && ui_->toolBox_statistics->isVisible()) { progressDialog->appendText("Loading statistics..."); QApplication::processEvents(); uSleep(100); QApplication::processEvents(); UINFO("Update statistics..."); updateStatistics(); progressDialog->appendText("Loading statistics... done!"); progressDialog->incrementStep(); QApplication::processEvents(); uSleep(100); QApplication::processEvents(); } ui_->textEdit_info->clear(); if(ui_->textEdit_info->isVisible()) { progressDialog->appendText("Update database info..."); QApplication::processEvents(); uSleep(100); QApplication::processEvents(); updateInfo(); progressDialog->appendText("Update database info... done!"); progressDialog->incrementStep(); QApplication::processEvents(); uSleep(100); QApplication::processEvents(); } if(ids.size()) { if(odomPoses_.size()) { bool nullPoses = odomPoses_.begin()->second.isNull(); for(std::map::iterator iter=odomPoses_.begin(); iter!=odomPoses_.end(); ++iter) { if((!iter->second.isNull() && nullPoses) || (iter->second.isNull() && !nullPoses)) { if(iter->second.isNull()) { UWARN("Pose %d is null!", iter->first); } UWARN("Mixed valid and null poses! Ignoring graph..."); odomPoses_.clear(); links_.clear(); break; } } if(nullPoses) { odomPoses_.clear(); links_.clear(); } if(odomPoses_.size()) { ui_->spinBox_optimizationsFrom->setRange(odomPoses_.begin()->first, odomPoses_.rbegin()->first); ui_->spinBox_optimizationsFrom->setValue(odomPoses_.begin()->first); ui_->label_optimizeFrom->setText(tr("Root [%1, %2]").arg(odomPoses_.begin()->first).arg(odomPoses_.rbegin()->first)); } } } ui_->menuExport_poses->setEnabled(false); graphes_.clear(); graphLinks_.clear(); neighborLinks_.clear(); loopLinks_.clear(); for(std::multimap::iterator iter = links_.begin(); iter!=links_.end(); ++iter) { if(!iter->second.transform().isNull()) { if(iter->second.type() == rtabmap::Link::kNeighbor || iter->second.type() == rtabmap::Link::kNeighborMerged) { neighborLinks_.append(iter->second); } else if(iter->second.from()!=iter->second.to()) { loopLinks_.append(iter->second); } } else { UERROR("Transform null for link from %d to %d", iter->first, iter->second.to()); } } if(ids_.size()) { ui_->horizontalSlider_A->setMinimum(0); ui_->horizontalSlider_B->setMinimum(0); ui_->horizontalSlider_A->setMaximum(ids_.size()-1); ui_->horizontalSlider_B->setMaximum(ids_.size()-1); ui_->horizontalSlider_A->setEnabled(true); ui_->horizontalSlider_B->setEnabled(true); ui_->horizontalSlider_A->setSliderPosition(0); ui_->horizontalSlider_B->setSliderPosition(0); sliderAValueChanged(0); sliderBValueChanged(0); } else { ui_->horizontalSlider_A->setEnabled(false); ui_->horizontalSlider_B->setEnabled(false); ui_->label_idA->setText("NaN"); ui_->label_idB->setText("NaN"); } if(neighborLinks_.size()) { ui_->horizontalSlider_neighbors->setMinimum(0); ui_->horizontalSlider_neighbors->setMaximum(neighborLinks_.size()-1); ui_->horizontalSlider_neighbors->setEnabled(true); ui_->horizontalSlider_neighbors->setSliderPosition(0); } else { ui_->horizontalSlider_neighbors->setEnabled(false); } if(ids_.size()) { updateLoopClosuresSlider(); if(ui_->graphViewer->isVisible() || ui_->dockWidget_occupancyGridView->isVisible()) { progressDialog->appendText("Updating Graph View..."); QApplication::processEvents(); uSleep(100); QApplication::processEvents(); updateGraphView(); progressDialog->appendText("Updating Graph View... done!"); progressDialog->incrementStep(); QApplication::processEvents(); uSleep(100); QApplication::processEvents(); } } progressDialog->setValue(progressDialog->maximumSteps()); } void DatabaseViewer::updateInfo() { UINFO("Update database info..."); if(dbDriver_) { if(ui_->textEdit_info->toPlainText().isEmpty()) { ui_->textEdit_info->append(tr("Path:\t\t%1").arg(dbDriver_->getUrl().c_str())); ui_->textEdit_info->append(tr("Version:\t\t%1").arg(dbDriver_->getDatabaseVersion().c_str())); ui_->textEdit_info->append(tr("Sessions:\t\t%1").arg(infoSessions_)); if(infoReducedGraph_) { ui_->textEdit_info->append(tr("Total odometry length:\t%1 m (approx. as graph has been reduced)").arg(infoTotalOdom_)); } else { ui_->textEdit_info->append(tr("Total odometry length:\t%1 m").arg(infoTotalOdom_)); } ui_->textEdit_info->append(tr("Total time:\t\t%1").arg(QDateTime::fromMSecsSinceEpoch(infoTotalTime_*1000).toUTC().toString("hh:mm:ss.zzz"))); ui_->textEdit_info->append(tr("LTM:\t\t%1 nodes and %2 words").arg(ids_.size()).arg(dbDriver_->getTotalDictionarySize())); ui_->textEdit_info->append(tr("WM:\t\t%1 nodes and %2 words").arg(dbDriver_->getLastNodesSize()).arg(dbDriver_->getLastDictionarySize())); ui_->textEdit_info->append(tr("Global graph:\t%1 poses and %2 links").arg(odomPoses_.size()).arg(links_.size())); ui_->textEdit_info->append(tr("Ground truth:\t%1 poses").arg(groundTruthPoses_.size())); ui_->textEdit_info->append(tr("GPS:\t%1 poses").arg(gpsValues_.size())); ui_->textEdit_info->append(""); long total = 0; long dbSize = UFile::length(dbDriver_->getUrl()); long mem = dbSize; ui_->textEdit_info->append(tr("Database size:\t%1 %2").arg(mem>1000000?mem/1000000:mem>1000?mem/1000:mem).arg(mem>1000000?"MB":mem>1000?"KB":"Bytes")); mem = dbDriver_->getNodesMemoryUsed(); total+=mem; ui_->textEdit_info->append(tr("Nodes size:\t\t%1 %2\t%3%").arg(mem>1000000?mem/1000000:mem>1000?mem/1000:mem).arg(mem>1000000?"MB":mem>1000?"KB":"Bytes").arg(dbSize>0?QString::number(double(mem)/double(dbSize)*100.0, 'f', 2 ):"0")); mem = dbDriver_->getLinksMemoryUsed(); total+=mem; ui_->textEdit_info->append(tr("Links size:\t\t%1 %2\t%3%").arg(mem>1000000?mem/1000000:mem>1000?mem/1000:mem).arg(mem>1000000?"MB":mem>1000?"KB":"Bytes").arg(dbSize>0?QString::number(double(mem)/double(dbSize)*100.0, 'f', 2 ):"0")); mem = dbDriver_->getImagesMemoryUsed(); total+=mem; ui_->textEdit_info->append(tr("RGB Images size:\t%1 %2\t%3%").arg(mem>1000000?mem/1000000:mem>1000?mem/1000:mem).arg(mem>1000000?"MB":mem>1000?"KB":"Bytes").arg(dbSize>0?QString::number(double(mem)/double(dbSize)*100.0, 'f', 2 ):"0")); mem = dbDriver_->getDepthImagesMemoryUsed(); total+=mem; ui_->textEdit_info->append(tr("Depth Images size:\t%1 %2\t%3%").arg(mem>1000000?mem/1000000:mem>1000?mem/1000:mem).arg(mem>1000000?"MB":mem>1000?"KB":"Bytes").arg(dbSize>0?QString::number(double(mem)/double(dbSize)*100.0, 'f', 2 ):"0")); mem = dbDriver_->getCalibrationsMemoryUsed(); total+=mem; ui_->textEdit_info->append(tr("Calibrations size:\t%1 %2\t%3%").arg(mem>1000000?mem/1000000:mem>1000?mem/1000:mem).arg(mem>1000000?"MB":mem>1000?"KB":"Bytes").arg(dbSize>0?QString::number(double(mem)/double(dbSize)*100.0, 'f', 2 ):"0")); mem = dbDriver_->getGridsMemoryUsed(); total+=mem; ui_->textEdit_info->append(tr("Grids size:\t\t%1 %2\t%3%").arg(mem>1000000?mem/1000000:mem>1000?mem/1000:mem).arg(mem>1000000?"MB":mem>1000?"KB":"Bytes").arg(dbSize>0?QString::number(double(mem)/double(dbSize)*100.0, 'f', 2 ):"0")); mem = dbDriver_->getLaserScansMemoryUsed(); total+=mem; ui_->textEdit_info->append(tr("Scans size:\t\t%1 %2\t%3%").arg(mem>1000000?mem/1000000:mem>1000?mem/1000:mem).arg(mem>1000000?"MB":mem>1000?"KB":"Bytes").arg(dbSize>0?QString::number(double(mem)/double(dbSize)*100.0, 'f', 2 ):"0")); mem = dbDriver_->getUserDataMemoryUsed(); total+=mem; ui_->textEdit_info->append(tr("User data size:\t%1 %2\t%3%").arg(mem>1000000?mem/1000000:mem>1000?mem/1000:mem).arg(mem>1000000?"MB":mem>1000?"KB":"Bytes").arg(dbSize>0?QString::number(double(mem)/double(dbSize)*100.0, 'f', 2 ):"0")); mem = dbDriver_->getWordsMemoryUsed(); total+=mem; ui_->textEdit_info->append(tr("Dictionary size:\t%1 %2\t%3%").arg(mem>1000000?mem/1000000:mem>1000?mem/1000:mem).arg(mem>1000000?"MB":mem>1000?"KB":"Bytes").arg(dbSize>0?QString::number(double(mem)/double(dbSize)*100.0, 'f', 2 ):"0")); mem = dbDriver_->getFeaturesMemoryUsed(); total+=mem; ui_->textEdit_info->append(tr("Features size:\t%1 %2\t%3%").arg(mem>1000000?mem/1000000:mem>1000?mem/1000:mem).arg(mem>1000000?"MB":mem>1000?"KB":"Bytes").arg(dbSize>0?QString::number(double(mem)/double(dbSize)*100.0, 'f', 2 ):"0")); mem = dbDriver_->getStatisticsMemoryUsed(); total+=mem; ui_->textEdit_info->append(tr("Statistics size:\t%1 %2\t%3%").arg(mem>1000000?mem/1000000:mem>1000?mem/1000:mem).arg(mem>1000000?"MB":mem>1000?"KB":"Bytes").arg(dbSize>0?QString::number(double(mem)/double(dbSize)*100.0, 'f', 2 ):"0")); mem = dbSize - total; ui_->textEdit_info->append(tr("Other (indexing):\t%1 %2\t%3%").arg(mem>1000000?mem/1000000:mem>1000?mem/1000:mem).arg(mem>1000000?"MB":mem>1000?"KB":"Bytes").arg(dbSize>0?QString::number(double(mem)/double(dbSize)*100.0, 'f', 2 ):"0")); ui_->textEdit_info->append(""); std::set idsWithoutBad; dbDriver_->getAllNodeIds(idsWithoutBad, false, true); int infoBadcountInLTM = 0; int infoBadCountInGraph = 0; for(int i=0; itextEdit_info->append(tr("%1 bad signatures in LTM").arg(infoBadcountInLTM)); ui_->textEdit_info->append(tr("%1 bad signatures in the global graph").arg(infoBadCountInGraph)); ui_->textEdit_info->append(""); ParametersMap parameters = dbDriver_->getLastParameters(); QFontMetrics metrics(ui_->textEdit_info->font()); int tabW = ui_->textEdit_info->tabStopWidth(); for(ParametersMap::iterator iter=parameters.begin(); iter!=parameters.end(); ++iter) { int strW = metrics.width(QString(iter->first.c_str()) + "="); ui_->textEdit_info->append(tr("%1=%2%3") .arg(iter->first.c_str()) .arg(strW < tabW?"\t\t\t\t":strW < tabW*2?"\t\t\t":strW < tabW*3?"\t\t":"\t") .arg(iter->second.c_str())); } // move back the cursor at the beginning ui_->textEdit_info->moveCursor(QTextCursor::Start) ; ui_->textEdit_info->ensureCursorVisible() ; } } else { ui_->textEdit_info->clear(); } } void DatabaseViewer::updateStatistics() { UDEBUG(""); if(dbDriver_) { ui_->toolBox_statistics->clear(); double firstStamp = 0.0; std::map, double> > allStats = dbDriver_->getAllStatistics(); std::map, std::vector > > allData; std::map allDataOi; for(int i=0; i statistics; if(allStats.find(ids_[i]) != allStats.end()) { statistics = allStats.at(ids_[i]).first; stamp = allStats.at(ids_[i]).second; } if(firstStamp==0.0) { firstStamp = stamp; } for(std::map::iterator iter=statistics.begin(); iter!=statistics.end(); ++iter) { if(allData.find(iter->first) == allData.end()) { //initialize data vectors allData.insert(std::make_pair(iter->first, std::make_pair(std::vector(ids_.size(), 0.0f), std::vector(ids_.size(), 0.0f) ))); allDataOi.insert(std::make_pair(iter->first, 0)); } int & oi = allDataOi.at(iter->first); allData.at(iter->first).first[oi] = ui_->checkBox_timeStats->isChecked()?float(stamp-firstStamp):ids_[i]; allData.at(iter->first).second[oi] = iter->second; ++oi; } } for(std::map, std::vector > >::iterator iter=allData.begin(); iter!=allData.end(); ++iter) { int oi = allDataOi.at(iter->first); iter->second.first.resize(oi); iter->second.second.resize(oi); ui_->toolBox_statistics->updateStat(iter->first.c_str(), iter->second.first, iter->second.second, true); } } UDEBUG(""); } void DatabaseViewer::selectObstacleColor() { QColor c = QColorDialog::getColor(ui_->lineEdit_obstacleColor->text(), this); if(c.isValid()) { ui_->lineEdit_obstacleColor->setText(c.name()); } } void DatabaseViewer::selectGroundColor() { QColor c = QColorDialog::getColor(ui_->lineEdit_groundColor->text(), this); if(c.isValid()) { ui_->lineEdit_groundColor->setText(c.name()); } } void DatabaseViewer::selectEmptyColor() { QColor c = QColorDialog::getColor(ui_->lineEdit_emptyColor->text(), this); if(c.isValid()) { ui_->lineEdit_emptyColor->setText(c.name()); } } void DatabaseViewer::editDepthImage() { if(dbDriver_ && ids_.size()) { if(lastSliderIndexBrowsed_>= ids_.size()) { lastSliderIndexBrowsed_ = ui_->horizontalSlider_A->value(); } int id = ids_.at(lastSliderIndexBrowsed_); SensorData data; dbDriver_->getNodeData(id, data, true, false, false, false); data.uncompressData(); if(!data.depthRaw().empty()) { editDepthArea_->setColorMap(lastSliderIndexBrowsed_ == ui_->horizontalSlider_B->value()?ui_->graphicsView_B->getDepthColorMap():ui_->graphicsView_A->getDepthColorMap()); editDepthArea_->setImage(data.depthRaw(), data.imageRaw()); if(editDepthDialog_->exec() == QDialog::Accepted && editDepthArea_->isModified()) { cv::Mat depth = editDepthArea_->getModifiedImage(); UASSERT(data.depthRaw().type() == depth.type()); UASSERT(data.depthRaw().cols == depth.cols); UASSERT(data.depthRaw().rows == depth.rows); dbDriver_->updateDepthImage(id, depth); this->update3dView(); } } } } void DatabaseViewer::exportPosesRaw() { exportPoses(0); } void DatabaseViewer::exportPosesRGBDSLAMMotionCapture() { exportPoses(1); } void DatabaseViewer::exportPosesRGBDSLAM() { exportPoses(10); } void DatabaseViewer::exportPosesKITTI() { exportPoses(2); } void DatabaseViewer::exportPosesTORO() { exportPoses(3); } void DatabaseViewer::exportPosesG2O() { exportPoses(4); } void DatabaseViewer::exportPosesKML() { exportPoses(5); } void DatabaseViewer::exportPoses(int format) { if(graphes_.empty()) { this->updateGraphView(); if(graphes_.empty() || ui_->horizontalSlider_iterations->maximum() != (int)graphes_.size()-1) { QMessageBox::warning(this, tr("Cannot export poses"), tr("No graph in database?!")); return; } } if(format == 5) { if(gpsValues_.empty() || gpsPoses_.empty()) { QMessageBox::warning(this, tr("Cannot export poses"), tr("No GPS in database?!")); } else { std::map graph = uValueAt(graphes_, ui_->horizontalSlider_iterations->value()); //align with ground truth for more meaningful results pcl::PointCloud cloud1, cloud2; cloud1.resize(graph.size()); cloud2.resize(graph.size()); int oi = 0; int idFirst = 0; for(std::map::const_iterator iter=gpsPoses_.begin(); iter!=gpsPoses_.end(); ++iter) { std::map::iterator iter2 = graph.find(iter->first); if(iter2!=graph.end()) { if(oi==0) { idFirst = iter->first; } cloud1[oi] = pcl::PointXYZ(iter->second.x(), iter->second.y(), iter->second.z()); cloud2[oi++] = pcl::PointXYZ(iter2->second.x(), iter2->second.y(), iter2->second.z()); } } Transform t = Transform::getIdentity(); if(oi>5) { cloud1.resize(oi); cloud2.resize(oi); t = util3d::transformFromXYZCorrespondencesSVD(cloud2, cloud1); } else if(idFirst) { t = gpsPoses_.at(idFirst) * graph.at(idFirst).inverse(); } std::map values; GeodeticCoords origin = gpsValues_.begin()->second.toGeodeticCoords(); for(std::map::iterator iter=graph.begin(); iter!=graph.end(); ++iter) { iter->second = t * iter->second; GeodeticCoords coord; coord.fromENU_WGS84(cv::Point3d(iter->second.x(), iter->second.y(), iter->second.z()), origin); double bearing = -(iter->second.theta()*180.0/M_PI-90.0); if(bearing < 0) { bearing += 360; } Transform p, g; int w; std::string l; double stamp=0.0; int mapId; std::vector v; GPS gps; EnvSensors sensors; dbDriver_->getNodeInfo(iter->first, p, mapId, w, l, stamp, g, v, gps, sensors); values.insert(std::make_pair(iter->first, GPS(stamp, coord.longitude(), coord.latitude(), coord.altitude(), 0, 0))); } QString output = pathDatabase_ + QDir::separator() + "poses.kml"; QString path = QFileDialog::getSaveFileName( this, tr("Save File"), output, tr("Google Earth file (*.kml)")); if(!path.isEmpty()) { bool saved = graph::exportGPS(path.toStdString(), values, ui_->graphViewer->getNodeColor().rgba()); if(saved) { QMessageBox::information(this, tr("Export poses..."), tr("GPS coordinates saved to \"%1\".") .arg(path)); } else { QMessageBox::information(this, tr("Export poses..."), tr("Failed to save GPS coordinates to \"%1\"!") .arg(path)); } } } return; } std::map optimizedPoses; if(ui_->checkBox_alignScansCloudsWithGroundTruth->isChecked() && !groundTruthPoses_.empty()) { optimizedPoses = groundTruthPoses_; } else { optimizedPoses = uValueAt(graphes_, ui_->horizontalSlider_iterations->value()); if(ui_->checkBox_alignPosesWithGroundTruth->isChecked()) { std::map refPoses = groundTruthPoses_; if(refPoses.empty()) { refPoses = gpsPoses_; } // Log ground truth statistics (in TUM's RGBD-SLAM format) if(refPoses.size()) { float translational_rmse = 0.0f; float translational_mean = 0.0f; float translational_median = 0.0f; float translational_std = 0.0f; float translational_min = 0.0f; float translational_max = 0.0f; float rotational_rmse = 0.0f; float rotational_mean = 0.0f; float rotational_median = 0.0f; float rotational_std = 0.0f; float rotational_min = 0.0f; float rotational_max = 0.0f; Transform gtToMap = graph::calcRMSE( refPoses, optimizedPoses, translational_rmse, translational_mean, translational_median, translational_std, translational_min, translational_max, rotational_rmse, rotational_mean, rotational_median, rotational_std, rotational_min, rotational_max); if(ui_->checkBox_alignPosesWithGroundTruth->isChecked() && !gtToMap.isIdentity()) { for(std::map::iterator iter=optimizedPoses.begin(); iter!=optimizedPoses.end(); ++iter) { iter->second = gtToMap * iter->second; } } } } } if(optimizedPoses.size()) { std::map localTransforms; QStringList items; items.push_back("Robot (base frame)"); items.push_back("Camera"); items.push_back("Scan"); bool ok; QString item = QInputDialog::getItem(this, tr("Export Poses"), tr("Frame: "), items, 0, false, &ok); if(!ok || item.isEmpty()) { return; } if(item.compare("Robot (base frame)") != 0) { bool cameraFrame = item.compare("Camera") == 0; for(std::map::iterator iter=optimizedPoses.begin(); iter!=optimizedPoses.end(); ++iter) { Transform localTransform; if(cameraFrame) { std::vector models; StereoCameraModel stereoModel; if(dbDriver_->getCalibration(iter->first, models, stereoModel)) { if((models.size() == 1 && !models.at(0).localTransform().isNull())) { localTransform = models.at(0).localTransform(); } else if(!stereoModel.localTransform().isNull()) { localTransform = stereoModel.localTransform(); } else if(models.size()>1) { UWARN("Multi-camera is not supported (node %d)", iter->first); } else { UWARN("Calibration not valid for node %d", iter->first); } } else { UWARN("Missing calibration for node %d", iter->first); } } else { LaserScan info; if(dbDriver_->getLaserScanInfo(iter->first, info)) { localTransform = info.localTransform(); } else { UWARN("Missing scan info for node %d", iter->first); } } if(!localTransform.isNull()) { localTransforms.insert(std::make_pair(iter->first, localTransform)); } } if(localTransforms.empty()) { QMessageBox::warning(this, tr("Export Poses"), tr("Could not find any \"%1\" frame, exporting in Robot frame instead.").arg(item)); } } std::map poses; std::multimap links; if(localTransforms.empty()) { poses = optimizedPoses; links = graphLinks_; } else { //adjust poses and links for(std::map::iterator iter=localTransforms.begin(); iter!=localTransforms.end(); ++iter) { poses.insert(std::make_pair(iter->first, optimizedPoses.at(iter->first) * iter->second)); } for(std::multimap::iterator iter=graphLinks_.begin(); iter!=graphLinks_.end(); ++iter) { if(uContains(poses, iter->second.from()) && uContains(poses, iter->second.to())) { std::multimap::iterator inserted = links.insert(*iter); int from = iter->second.from(); int to = iter->second.to(); inserted->second.setTransform(localTransforms.at(from).inverse()*iter->second.transform()*localTransforms.at(to)); } } } std::map stamps; if(format == 1 || format == 10) { for(std::map::iterator iter=poses.begin(); iter!=poses.end(); ++iter) { Transform p, g; int w; std::string l; double stamp=0.0; int mapId; std::vector v; GPS gps; EnvSensors sensors; if(dbDriver_->getNodeInfo(iter->first, p, mapId, w, l, stamp, g, v, gps, sensors)) { stamps.insert(std::make_pair(iter->first, stamp)); } } if(stamps.size()!=poses.size()) { QMessageBox::warning(this, tr("Export poses..."), tr("Poses (%1) and stamps (%2) have not the same size! Cannot export in RGB-D SLAM format.") .arg(poses.size()).arg(stamps.size())); return; } } QString output = pathDatabase_ + QDir::separator() + (format==3?"toro.graph":format==4?"poses.g2o":"poses.txt"); QString path = QFileDialog::getSaveFileName( this, tr("Save File"), output, format == 3?tr("TORO file (*.graph)"):format==4?tr("g2o file (*.g2o)"):tr("Text file (*.txt)")); if(!path.isEmpty()) { if(QFileInfo(path).suffix() == "") { if(format == 3) { path += ".graph"; } else if(format==4) { path += ".g2o"; } else { path += ".txt"; } } bool saved = graph::exportPoses(path.toStdString(), format, poses, links, stamps, ui_->parameters_toolbox->getParameters()); if(saved) { QMessageBox::information(this, tr("Export poses..."), tr("%1 saved to \"%2\".") .arg(format == 3?"TORO graph":format == 4?"g2o graph":"Poses") .arg(path)); } else { QMessageBox::information(this, tr("Export poses..."), tr("Failed to save %1 to \"%2\"!") .arg(format == 3?"TORO graph":format == 4?"g2o graph":"poses") .arg(path)); } } } } void DatabaseViewer::exportGPS_TXT() { exportGPS(0); } void DatabaseViewer::exportGPS_KML() { exportGPS(1); } void DatabaseViewer::exportGPS(int format) { if(!gpsValues_.empty()) { QString output = pathDatabase_ + QDir::separator() + (format==0?"gps.txt":"gps.kml"); QString path = QFileDialog::getSaveFileName( this, tr("Save File"), output, format==0?tr("Raw format (*.txt)"):tr("Google Earth file (*.kml)")); if(!path.isEmpty()) { bool saved = graph::exportGPS(path.toStdString(), gpsValues_, ui_->graphViewer->getGPSColor().rgba()); if(saved) { QMessageBox::information(this, tr("Export poses..."), tr("GPS coordinates saved to \"%1\".") .arg(path)); } else { QMessageBox::information(this, tr("Export poses..."), tr("Failed to save GPS coordinates to \"%1\"!") .arg(path)); } } } } void DatabaseViewer::editSaved2DMap() { if(!dbDriver_) { QMessageBox::warning(this, tr("Cannot edit 2D map"), tr("A database must must loaded first...\nUse File->Open database.")); return; } if(uStrNumCmp(dbDriver_->getDatabaseVersion(), "0.17.0") < 0) { QMessageBox::warning(this, tr("Cannot edit 2D map"), tr("The database has too old version (%1) to saved " "optimized map. Version 0.17.0 minimum required.").arg(dbDriver_->getDatabaseVersion().c_str())); return; } if(linksAdded_.size() || linksRefined_.size() || linksRemoved_.size() || generatedLocalMaps_.size()) { QMessageBox::warning(this, tr("Cannot edit 2D map"), tr("The database has modified links and/or modified local " "occupancy grids, the 2D optimized map cannot be modified.")); return; } float xMin, yMin, cellSize; cv::Mat map = dbDriver_->load2DMap(xMin, yMin, cellSize); if(map.empty()) { QMessageBox::warning(this, tr("Cannot export 2D map"), tr("The database doesn't contain a saved 2D map.")); return; } cv::Mat map8U = rtabmap::util3d::convertMap2Image8U(map, false); cv::Mat map8UFlip, map8URotated; cv::flip(map8U, map8UFlip, 0); if(!ui_->graphViewer->isOrientationENU()) { //ROTATE_90_COUNTERCLOCKWISE cv::transpose(map8UFlip, map8URotated); cv::flip(map8URotated, map8URotated, 0); } else { map8URotated = map8UFlip; } editMapArea_->setMap(map8URotated); if(editMapDialog_->exec() == QDialog::Accepted) { cv::Mat mapModified = editMapArea_->getModifiedMap(); if(!ui_->graphViewer->isOrientationENU()) { //ROTATE_90_CLOCKWISE cv::transpose(mapModified, map8URotated); cv::flip(map8URotated, map8URotated, 1); } else { map8URotated = mapModified; } cv::flip(map8URotated, map8UFlip, 0); UASSERT(map8UFlip.type() == map8U.type()); UASSERT(map8UFlip.cols == map8U.cols); UASSERT(map8UFlip.rows == map8U.rows); cv::Mat map8S = rtabmap::util3d::convertImage8U2Map(map8UFlip, false); if(editMapArea_->isModified()) { dbDriver_->save2DMap(map8S, xMin, yMin, cellSize); QMessageBox::information(this, tr("Edit 2D map"), tr("Map updated!")); } int cropRadius = ui_->spinBox_cropRadius->value(); QMessageBox::StandardButton b = QMessageBox::question(this, tr("Crop empty space"), tr("Do you want to clear empty space from local occupancy grids and laser scans?\n\n" "Advantages:\n" " * If the map needs to be regenerated in the future (e.g., when we re-use the map in SLAM mode), removed obstacles won't reappear.\n" " * The cropped laser scans will be also used for localization, so if dynamic obstacles have been removed, localization won't try to match them anymore.\n\n" "Disadvantage:\n" " * Cropping the laser scans cannot be reverted after the viewer is closed and changes have been saved.\n\n" "Parameter(s):\n" " Crop radius = %1 pixels\n\n" "Press \"Yes\" to filter only grids.\n" "Press \"Yes to All\" to filter both grids and laser scans.\n").arg(cropRadius), QMessageBox::Yes | QMessageBox::YesToAll | QMessageBox::No, QMessageBox::No); if(b == QMessageBox::Yes || b == QMessageBox::YesToAll) { std::map poses = dbDriver_->loadOptimizedPoses(); // poses should match the grid map modifiedLaserScans_.clear(); rtabmap::ProgressDialog progressDialog(this); progressDialog.setMaximumSteps(poses.size()+1); progressDialog.show(); progressDialog.setCancelButtonVisible(true); progressDialog.appendText(QString("Cropping empty space... %1 scans to filter").arg(poses.size())); progressDialog.setMinimumWidth(800); QApplication::processEvents(); UINFO("Cropping empty space... poses=%d cropRadius=%d", poses.size(), cropRadius); UASSERT(cropRadius>=0); for(std::map::iterator iter=poses.begin(); iter!=poses.end() && !progressDialog.isCanceled(); ++iter) { // local grid cv::Mat gridGround; cv::Mat gridObstacles; cv::Mat gridEmpty; // scan SensorData data; dbDriver_->getNodeData(iter->first, data); LaserScan scan; data.uncompressData(0,0,&scan,0,&gridGround,&gridObstacles,&gridEmpty); if(generatedLocalMaps_.find(iter->first) != generatedLocalMaps_.end()) { gridObstacles = generatedLocalMaps_.find(iter->first)->second.first.second; } if(!gridObstacles.empty()) { cv::Mat filtered = cv::Mat(1, gridObstacles.cols, gridObstacles.type()); int oi = 0; for(int i=0; i(0, i); cv::Point3f pt(ptr[0], ptr[1], gridObstacles.channels()==2?0:ptr[2]); pt = util3d::transformPoint(pt, iter->second); int x = int((pt.x - xMin) / cellSize + 0.5f); int y = int((pt.y - yMin) / cellSize + 0.5f); if(x>=0 && x=0 && y=0 && x+j=0 && y+k(y+k,x+j) == 100) { obstacleDetected = true; } } } if(map8S.at(y,x) != 0 || obstacleDetected) { // Verify that we don't have an obstacle on neighbor cells cv::Mat(gridObstacles, cv::Range::all(), cv::Range(i,i+1)).copyTo(cv::Mat(filtered, cv::Range::all(), cv::Range(oi,oi+1))); ++oi; } } } if(oi != gridObstacles.cols) { progressDialog.appendText(QString("Grid %1 filtered %2 pts -> %3 pts").arg(iter->first).arg(gridObstacles.cols).arg(oi)); UINFO("Grid %d filtered %d -> %d", iter->first, gridObstacles.cols, oi); // update std::pair, cv::Mat> value; if(generatedLocalMaps_.find(iter->first) != generatedLocalMaps_.end()) { value = generatedLocalMaps_.at(iter->first); } else { value.first.first = gridGround; value.second = gridEmpty; uInsert(generatedLocalMapsInfo_, std::make_pair(data.id(), std::make_pair(data.gridCellSize(), data.gridViewPoint()))); } value.first.second = cv::Mat(filtered, cv::Range::all(), cv::Range(0, oi)); uInsert(generatedLocalMaps_, std::make_pair(iter->first, value)); } } if(b == QMessageBox::YesToAll && !scan.isEmpty()) { Transform mapToScan = iter->second * scan.localTransform(); cv::Mat filtered = cv::Mat(1, scan.size(), scan.dataType()); int oi = 0; for(int i=0; i(0, i); cv::Point3f pt(ptr[0], ptr[1], scan.is2d()?0:ptr[2]); pt = util3d::transformPoint(pt, mapToScan); int x = int((pt.x - xMin) / cellSize + 0.5f); int y = int((pt.y - yMin) / cellSize + 0.5f); if(x>=0 && x=0 && y=0 && x+j=0 && y+k(y+k,x+j) == 100) { obstacleDetected = true; } } } if(map8S.at(y,x) != 0 || obstacleDetected) { // Verify that we don't have an obstacle on neighbor cells cv::Mat(scan.data(), cv::Range::all(), cv::Range(i,i+1)).copyTo(cv::Mat(filtered, cv::Range::all(), cv::Range(oi,oi+1))); ++oi; } } } if(oi != scan.size()) { progressDialog.appendText(QString("Scan %1 filtered %2 pts -> %3 pts").arg(iter->first).arg(scan.size()).arg(oi)); UINFO("Scan %d filtered %d -> %d", iter->first, scan.size(), oi); // update if(scan.angleIncrement()!=0) { // copy meta data scan = LaserScan( cv::Mat(filtered, cv::Range::all(), cv::Range(0, oi)), scan.format(), scan.rangeMin(), scan.rangeMax(), scan.angleMin(), scan.angleMax(), scan.angleIncrement(), scan.localTransform()); } else { // copy meta data scan = LaserScan( cv::Mat(filtered, cv::Range::all(), cv::Range(0, oi)), scan.maxPoints(), scan.rangeMax(), scan.format(), scan.localTransform()); } uInsert(modifiedLaserScans_, std::make_pair(iter->first, scan)); } } progressDialog.incrementStep(); QApplication::processEvents(); } if(progressDialog.isCanceled()) { modifiedLaserScans_.clear(); } else { update3dView(); updateGraphView(); } progressDialog.setValue(progressDialog.maximumSteps()); } } } void DatabaseViewer::exportSaved2DMap() { if(!dbDriver_) { QMessageBox::warning(this, tr("Cannot export 2D map"), tr("A database must must loaded first...\nUse File->Open database.")); return; } float xMin, yMin, cellSize; cv::Mat map = dbDriver_->load2DMap(xMin, yMin, cellSize); if(map.empty()) { QMessageBox::warning(this, tr("Cannot export 2D map"), tr("The database doesn't contain a saved 2D map.")); } else { cv::Mat map8U = rtabmap::util3d::convertMap2Image8U(map, true); QString name = QFileInfo(databaseFileName_.c_str()).baseName(); QString path = QFileDialog::getSaveFileName( this, tr("Save File"), pathDatabase_+"/" + name + ".pgm", tr("Map (*.pgm)")); if(!path.isEmpty()) { if(QFileInfo(path).suffix() == "") { path += ".pgm"; } cv::imwrite(path.toStdString(), map8U); QMessageBox::information(this, tr("Export 2D map"), tr("Exported %1!").arg(path)); } } } void DatabaseViewer::import2DMap() { if(!dbDriver_) { QMessageBox::warning(this, tr("Cannot import 2D map"), tr("A database must must loaded first...\nUse File->Open database.")); return; } if(uStrNumCmp(dbDriver_->getDatabaseVersion(), "0.17.0") < 0) { QMessageBox::warning(this, tr("Cannot edit 2D map"), tr("The database has too old version (%1) to saved " "optimized map. Version 0.17.0 minimum required.").arg(dbDriver_->getDatabaseVersion().c_str())); return; } if(linksAdded_.size() || linksRefined_.size() || linksRemoved_.size() || generatedLocalMaps_.size()) { QMessageBox::warning(this, tr("Cannot import 2D map"), tr("The database has modified links and/or modified local " "occupancy grids, the 2D optimized map cannot be modified.")); return; } float xMin, yMin, cellSize; cv::Mat mapOrg = dbDriver_->load2DMap(xMin, yMin, cellSize); if(mapOrg.empty()) { QMessageBox::warning(this, tr("Cannot import 2D map"), tr("The database doesn't contain a saved 2D map.")); } else { QString path = QFileDialog::getOpenFileName( this, tr("Open File"), pathDatabase_, tr("Map (*.pgm)")); if(!path.isEmpty()) { cv::Mat map8U = cv::imread(path.toStdString(), cv::IMREAD_UNCHANGED); cv::Mat map = rtabmap::util3d::convertImage8U2Map(map8U, true); if(mapOrg.cols == map.cols && mapOrg.rows == map8U.rows) { dbDriver_->save2DMap(map, xMin, yMin, cellSize); QMessageBox::information(this, tr("Import 2D map"), tr("Imported %1!").arg(path)); } else { QMessageBox::warning(this, tr("Import 2D map"), tr("Cannot import %1 as its size doesn't match the current saved map. Import 2D Map action should only be used to modify the map saved in the database.").arg(path)); } } } } void DatabaseViewer::regenerateSavedMap() { if(!dbDriver_) { QMessageBox::warning(this, tr("Cannot import 2D map"), tr("A database must must loaded first...\nUse File->Open database.")); return; } if(uStrNumCmp(dbDriver_->getDatabaseVersion(), "0.17.0") < 0) { QMessageBox::warning(this, tr("Cannot edit 2D map"), tr("The database has too old version (%1) to saved " "optimized map. Version 0.17.0 minimum required.").arg(dbDriver_->getDatabaseVersion().c_str())); return; } if(linksAdded_.size() || linksRefined_.size() || linksRemoved_.size() || generatedLocalMaps_.size()) { QMessageBox::warning(this, tr("Cannot import 2D map"), tr("The database has modified links and/or modified local " "occupancy grids, the 2D optimized map cannot be modified. Try " "closing the database and re-open it to save the changes.")); return; } if((int)graphes_.empty() || localMaps_.empty()) { QMessageBox::warning(this, tr("Cannot regenerate 2D map"), tr("Graph is empty, make sure you opened the " "Graph View and there is a map shown.")); return; } //update scans UINFO("Update local maps list..."); OccupancyGrid grid(ui_->parameters_toolbox->getParameters()); for(std::map, cv::Mat> >::iterator iter=localMaps_.begin(); iter!=localMaps_.end(); ++iter) { grid.addToCache(iter->first, iter->second.first.first, iter->second.first.second, iter->second.second); } grid.update(graphes_.back()); float xMin, yMin; cv::Mat map = grid.getMap(xMin, yMin); if(map.empty()) { QMessageBox::information(this, tr("Regenerate 2D map"), tr("Failed to renegerate the map, resulting map is empty!")); } else { dbDriver_->save2DMap(map, xMin, yMin, grid.getCellSize()); Transform lastlocalizationPose; dbDriver_->loadOptimizedPoses(&lastlocalizationPose); if(lastlocalizationPose.isNull() && !graphes_.back().empty()) { // use last pose by default lastlocalizationPose = graphes_.back().rbegin()->second; } dbDriver_->saveOptimizedPoses(graphes_.back(), lastlocalizationPose); // reset optimized mesh as poses have changed dbDriver_->saveOptimizedMesh(cv::Mat()); QMessageBox::information(this, tr("Regenerate 2D map"), tr("Map regenerated!")); ui_->actionEdit_optimized_2D_map->setEnabled(true); ui_->actionExport_saved_2D_map->setEnabled(true); ui_->actionImport_2D_map->setEnabled(true); } } void DatabaseViewer::viewOptimizedMesh() { if(!dbDriver_) { QMessageBox::warning(this, tr("Cannot view optimized mesh"), tr("A database must must loaded first...\nUse File->Open database.")); return; } std::vector > > polygons; #if PCL_VERSION_COMPARE(>=, 1, 8, 0) std::vector > > texCoords; #else std::vector > texCoords; #endif cv::Mat textures; cv::Mat cloudMat = dbDriver_->loadOptimizedMesh(&polygons, &texCoords, &textures); if(cloudMat.empty()) { QMessageBox::warning(this, tr("Cannot view optimized mesh"), tr("The database doesn't contain a saved optimized mesh.")); } else { CloudViewer * viewer = new CloudViewer(this); viewer->setWindowFlags(Qt::Window); viewer->setAttribute(Qt::WA_DeleteOnClose); viewer->buildPickingLocator(true); if(!textures.empty()) { pcl::TextureMeshPtr mesh = util3d::assembleTextureMesh(cloudMat, polygons, texCoords, textures, true); util3d::fixTextureMeshForVisualization(*mesh); viewer->setWindowTitle("Optimized Textured Mesh"); viewer->setPolygonPicking(true); viewer->addCloudTextureMesh("mesh", mesh, textures); } else if(polygons.size() == 1) { pcl::PolygonMeshPtr mesh = util3d::assemblePolygonMesh(cloudMat, polygons.at(0)); viewer->setWindowTitle("Optimized Mesh"); viewer->setPolygonPicking(true); viewer->addCloudMesh("mesh", mesh); } else { LaserScan scan = LaserScan::backwardCompatibility(cloudMat); pcl::PCLPointCloud2::Ptr cloud = util3d::laserScanToPointCloud2(scan); viewer->setWindowTitle("Optimized Point Cloud"); viewer->addCloud("mesh", cloud, Transform::getIdentity(), scan.hasRGB(), scan.hasNormals(), scan.hasIntensity()); } viewer->show(); } } void DatabaseViewer::exportOptimizedMesh() { if(!dbDriver_) { QMessageBox::warning(this, tr("Cannot export optimized mesh"), tr("A database must must loaded first...\nUse File->Open database.")); return; } std::vector > > polygons; #if PCL_VERSION_COMPARE(>=, 1, 8, 0) std::vector > > texCoords; #else std::vector > texCoords; #endif cv::Mat textures; cv::Mat cloudMat = dbDriver_->loadOptimizedMesh(&polygons, &texCoords, &textures); if(cloudMat.empty()) { QMessageBox::warning(this, tr("Cannot export optimized mesh"), tr("The database doesn't contain a saved optimized mesh.")); } else { QString name = QFileInfo(databaseFileName_.c_str()).baseName(); if(!textures.empty()) { pcl::TextureMeshPtr mesh = util3d::assembleTextureMesh(cloudMat, polygons, texCoords, textures); QString path = QFileDialog::getSaveFileName( this, tr("Save File"), pathDatabase_+"/" + name + ".obj", tr("Mesh (*.obj)")); if(!path.isEmpty()) { if(QFileInfo(path).suffix() == "") { path += ".obj"; } QString baseName = QFileInfo(path).baseName(); if(mesh->tex_materials.size() == 1) { mesh->tex_materials.at(0).tex_file = baseName.toStdString() + ".png"; cv::imwrite((QFileInfo(path).absoluteDir().absolutePath()+QDir::separator()+baseName).toStdString() + ".png", textures); } else { for(unsigned int i=0; itex_materials.size(); ++i) { mesh->tex_materials.at(i).tex_file = (baseName+QDir::separator()+QString::number(i)+".png").toStdString(); UASSERT((i+1)*textures.rows <= (unsigned int)textures.cols); cv::imwrite((QFileInfo(path).absoluteDir().absolutePath()+QDir::separator()+baseName+QDir::separator()+QString::number(i)+".png").toStdString(), textures(cv::Range::all(), cv::Range(i*textures.rows, (i+1)*textures.rows))); } } pcl::io::saveOBJFile(path.toStdString(), *mesh); QMessageBox::information(this, tr("Export Textured Mesh"), tr("Exported %1!").arg(path)); } } else if(polygons.size() == 1) { pcl::PolygonMeshPtr mesh = util3d::assemblePolygonMesh(cloudMat, polygons.at(0)); QString path = QFileDialog::getSaveFileName( this, tr("Save File"), pathDatabase_+"/" + name + ".ply", tr("Mesh (*.ply)")); if(!path.isEmpty()) { if(QFileInfo(path).suffix() == "") { path += ".ply"; } pcl::io::savePLYFileBinary(path.toStdString(), *mesh); QMessageBox::information(this, tr("Export Mesh"), tr("Exported %1!").arg(path)); } } else { QString path = QFileDialog::getSaveFileName( this, tr("Save File"), pathDatabase_+"/" + name + ".ply", tr("Point cloud data (*.ply *.pcd)")); if(!path.isEmpty()) { if(QFileInfo(path).suffix() == "") { path += ".ply"; } bool success = false; pcl::PCLPointCloud2::Ptr cloud = util3d::laserScanToPointCloud2(LaserScan::backwardCompatibility(cloudMat)); if(QFileInfo(path).suffix() == "pcd") { success = pcl::io::savePCDFile(path.toStdString(), *cloud) == 0; } else { success = pcl::io::savePLYFile(path.toStdString(), *cloud) == 0; } if(success) { QMessageBox::information(this, tr("Export Point Cloud"), tr("Exported %1!").arg(path)); } else { QMessageBox::critical(this, tr("Export Point Cloud"), tr("Failed exporting %1!").arg(path)); } } } } } void DatabaseViewer::updateOptimizedMesh() { if(!ids_.size() || !dbDriver_) { QMessageBox::warning(this, tr("Cannot generate a graph"), tr("The database is empty...")); return; } if(graphes_.empty()) { this->updateGraphView(); if(graphes_.empty() || ui_->horizontalSlider_iterations->maximum() != (int)graphes_.size()-1) { QMessageBox::warning(this, tr("Cannot generate a graph"), tr("No graph in database?!")); return; } } std::map optimizedPoses; if(ui_->checkBox_alignScansCloudsWithGroundTruth->isChecked() && !groundTruthPoses_.empty()) { optimizedPoses = groundTruthPoses_; } else { optimizedPoses = uValueAt(graphes_, ui_->horizontalSlider_iterations->value()); } if(ui_->groupBox_posefiltering->isChecked()) { optimizedPoses = graph::radiusPosesFiltering(optimizedPoses, ui_->doubleSpinBox_posefilteringRadius->value(), ui_->doubleSpinBox_posefilteringAngle->value()*CV_PI/180.0); } Transform lastlocalizationPose; dbDriver_->loadOptimizedPoses(&lastlocalizationPose); //optimized poses have changed, reset 2d map dbDriver_->save2DMap(cv::Mat(), 0, 0, 0); if(optimizedPoses.size() > 0) { exportDialog_->setDBDriver(dbDriver_); exportDialog_->forceAssembling(true); exportDialog_->setOkButton(); std::map::Ptr> clouds; std::map meshes; std::map textureMeshes; std::vector > textureVertexToPixels; if(exportDialog_->getExportedClouds( optimizedPoses, updateLinksWithModifications(links_), mapIds_, QMap(), std::map::Ptr, pcl::IndicesPtr> >(), std::map(), pathDatabase_, ui_->parameters_toolbox->getParameters(), clouds, meshes, textureMeshes, textureVertexToPixels)) { if(textureMeshes.size()) { dbDriver_->saveOptimizedPoses(optimizedPoses, lastlocalizationPose); cv::Mat globalTextures; pcl::TextureMeshPtr textureMesh = textureMeshes.at(0); if(textureMesh->tex_materials.size()>1) { globalTextures = util3d::mergeTextures( *textureMesh, std::map(), std::map >(), 0, dbDriver_, exportDialog_->getTextureSize(), exportDialog_->getMaxTextures(), textureVertexToPixels, exportDialog_->isGainCompensation(), exportDialog_->getGainBeta(), exportDialog_->isGainRGB(), exportDialog_->isBlending(), exportDialog_->getBlendingDecimation(), exportDialog_->getTextureBrightnessConstrastRatioLow(), exportDialog_->getTextureBrightnessConstrastRatioHigh(), exportDialog_->isExposeFusion()); } dbDriver_->saveOptimizedMesh( util3d::laserScanFromPointCloud(textureMesh->cloud, false).data(), util3d::convertPolygonsFromPCL(textureMesh->tex_polygons), textureMesh->tex_coordinates, globalTextures); QMessageBox::information(this, tr("Update Optimized Textured Mesh"), tr("Updated!")); ui_->actionView_optimized_mesh->setEnabled(true); ui_->actionExport_optimized_mesh->setEnabled(true); this->viewOptimizedMesh(); } else if(meshes.size()) { dbDriver_->saveOptimizedPoses(optimizedPoses, lastlocalizationPose); std::vector > > polygons(1); polygons.at(0) = util3d::convertPolygonsFromPCL(meshes.at(0)->polygons); dbDriver_->saveOptimizedMesh(util3d::laserScanFromPointCloud(meshes.at(0)->cloud, false).data(), polygons); QMessageBox::information(this, tr("Update Optimized Mesh"), tr("Updated!")); ui_->actionView_optimized_mesh->setEnabled(true); ui_->actionExport_optimized_mesh->setEnabled(true); this->viewOptimizedMesh(); } else if(clouds.size()) { dbDriver_->saveOptimizedPoses(optimizedPoses, lastlocalizationPose); dbDriver_->saveOptimizedMesh(util3d::laserScanFromPointCloud(*clouds.at(0))); QMessageBox::information(this, tr("Update Optimized PointCloud"), tr("Updated!")); ui_->actionView_optimized_mesh->setEnabled(true); ui_->actionExport_optimized_mesh->setEnabled(true); this->viewOptimizedMesh(); } else { QMessageBox::critical(this, tr("Update Optimized Mesh"), tr("Nothing to save!")); } } exportDialog_->setProgressDialogToMax(); } else { QMessageBox::critical(this, tr("Error"), tr("No neighbors found for node %1.").arg(ui_->spinBox_optimizationsFrom->value())); } } void DatabaseViewer::generateGraph() { if(!dbDriver_) { QMessageBox::warning(this, tr("Cannot generate a graph"), tr("A database must must loaded first...\nUse File->Open database.")); return; } QString path = QFileDialog::getSaveFileName(this, tr("Save File"), pathDatabase_+"/Graph.dot", tr("Graphiz file (*.dot)")); if(!path.isEmpty()) { dbDriver_->generateGraph(path.toStdString()); } } void DatabaseViewer::generateLocalGraph() { if(!ids_.size() || !dbDriver_) { QMessageBox::warning(this, tr("Cannot generate a graph"), tr("The database is empty...")); return; } bool ok = false; int id = QInputDialog::getInt(this, tr("Around which location?"), tr("Location ID"), ids_.first(), ids_.first(), ids_.last(), 1, &ok); if(ok) { int margin = QInputDialog::getInt(this, tr("Depth around the location?"), tr("Margin"), 4, 1, 100, 1, &ok); if(ok) { QString path = QFileDialog::getSaveFileName(this, tr("Save File"), pathDatabase_+"/Graph" + QString::number(id) + ".dot", tr("Graphiz file (*.dot)")); if(!path.isEmpty() && id>0) { std::map ids; std::list curentMarginList; std::set currentMargin; std::set nextMargin; nextMargin.insert(id); int m = 0; while((margin == 0 || m < margin) && nextMargin.size()) { curentMarginList = std::list(nextMargin.rbegin(), nextMargin.rend()); nextMargin.clear(); for(std::list::iterator jter = curentMarginList.begin(); jter!=curentMarginList.end(); ++jter) { if(ids.find(*jter) == ids.end()) { std::multimap links; ids.insert(std::pair(*jter, m)); UTimer timer; dbDriver_->loadLinks(*jter, links); // links for(std::multimap::const_iterator iter=links.begin(); iter!=links.end(); ++iter) { if( !uContains(ids, iter->first)) { UASSERT(iter->second.type() != Link::kUndef); if(iter->second.type() == Link::kNeighbor || iter->second.type() == Link::kNeighborMerged) { nextMargin.insert(iter->first); } else { // loop closures are on same margin if(currentMargin.insert(iter->first).second) { curentMarginList.push_back(iter->first); } } } } } } ++m; } if(ids.size() > 0) { ids.insert(std::pair(id, 0)); std::set idsSet; for(std::map::iterator iter = ids.begin(); iter!=ids.end(); ++iter) { idsSet.insert(idsSet.end(), iter->first); UINFO("Node %d", iter->first); } UINFO("idsSet=%d", idsSet.size()); dbDriver_->generateGraph(path.toStdString(), idsSet); } else { QMessageBox::critical(this, tr("Error"), tr("No neighbors found for signature %1.").arg(id)); } } } } } void DatabaseViewer::regenerateLocalMaps() { OccupancyGrid grid(ui_->parameters_toolbox->getParameters()); generatedLocalMaps_.clear(); generatedLocalMapsInfo_.clear(); rtabmap::ProgressDialog progressDialog(this); progressDialog.setMaximumSteps(ids_.size()); progressDialog.show(); progressDialog.setCancelButtonVisible(true); UPlot * plot = new UPlot(this); plot->setWindowFlags(Qt::Window); plot->setWindowTitle("Local Occupancy Grid Generation Time (ms)"); plot->setAttribute(Qt::WA_DeleteOnClose); UPlotCurve * decompressionCurve = plot->addCurve("Decompression"); UPlotCurve * gridCreationCurve = plot->addCurve("Grid Creation"); plot->show(); UPlot * plotCells = new UPlot(this); plotCells->setWindowFlags(Qt::Window); plotCells->setWindowTitle("Occupancy Cells"); plotCells->setAttribute(Qt::WA_DeleteOnClose); UPlotCurve * totalCurve = plotCells->addCurve("Total"); UPlotCurve * emptyCurve = plotCells->addCurve("Empty"); UPlotCurve * obstaclesCurve = plotCells->addCurve("Obstacles"); UPlotCurve * groundCurve = plotCells->addCurve("Ground"); plotCells->show(); double decompressionTime = 0; double gridCreationTime = 0; for(int i =0; igetNodeData(ids_.at(i), data); data.uncompressData(); decompressionTime = timer.ticks()*1000.0; int mapId, weight; Transform odomPose, groundTruth; std::string label; double stamp; QString msg; std::vector velocity; GPS gps; EnvSensors sensors; if(dbDriver_->getNodeInfo(data.id(), odomPose, mapId, weight, label, stamp, groundTruth, velocity, gps, sensors)) { Signature s = data; s.setPose(odomPose); cv::Mat ground, obstacles, empty; cv::Point3f viewpoint; timer.ticks(); if(ui_->checkBox_grid_regenerateFromSavedGrid->isChecked() && s.sensorData().gridCellSize() > 0.0f) { pcl::PointCloud::Ptr cloud = util3d::laserScanToPointCloudRGB(LaserScan::backwardCompatibility(s.sensorData().gridObstacleCellsRaw())); *cloud+=*util3d::laserScanToPointCloudRGB(LaserScan::backwardCompatibility(s.sensorData().gridGroundCellsRaw())); if(cloud->size()) { // update viewpoint if(s.sensorData().cameraModels().size()) { // average of all local transforms float sum = 0; for(unsigned int i=0; i 0.0f) { viewpoint.x /= sum; viewpoint.y /= sum; viewpoint.z /= sum; } } else { const Transform & t = s.sensorData().stereoCameraModel().localTransform(); viewpoint = cv::Point3f(t.x(), t.y(), t.z()); } grid.createLocalMap(LaserScan::backwardCompatibility(util3d::laserScanFromPointCloud(*cloud)), s.getPose(), ground, obstacles, empty, viewpoint); } } else { grid.createLocalMap(s, ground, obstacles, empty, viewpoint); } gridCreationTime = timer.ticks()*1000.0; uInsert(generatedLocalMaps_, std::make_pair(data.id(), std::make_pair(std::make_pair(ground, obstacles), empty))); uInsert(generatedLocalMapsInfo_, std::make_pair(data.id(), std::make_pair(grid.getCellSize(), viewpoint))); msg = QString("Generated local occupancy grid map %1/%2").arg(i+1).arg((int)ids_.size()); totalCurve->addValue(ids_.at(i), obstacles.cols+ground.cols+empty.cols); emptyCurve->addValue(ids_.at(i), empty.cols); obstaclesCurve->addValue(ids_.at(i), obstacles.cols); groundCurve->addValue(ids_.at(i), ground.cols); } progressDialog.appendText(msg); progressDialog.incrementStep(); decompressionCurve->addValue(ids_.at(i), decompressionTime); gridCreationCurve->addValue(ids_.at(i), gridCreationTime); if(ids_.size() < 50 || (i+1) % 25 == 0) { QApplication::processEvents(); } } progressDialog.setValue(progressDialog.maximumSteps()); if(graphes_.size()) { update3dView(); sliderIterationsValueChanged((int)graphes_.size()-1); } else { updateGrid(); } } void DatabaseViewer::regenerateCurrentLocalMaps() { UTimer time; OccupancyGrid grid(ui_->parameters_toolbox->getParameters()); if(ids_.size() == 0) { UWARN("ids_ is empty!"); return; } QSet idsSet; idsSet.insert(ids_.at(ui_->horizontalSlider_A->value())); idsSet.insert(ids_.at(ui_->horizontalSlider_B->value())); QList ids = idsSet.toList(); rtabmap::ProgressDialog progressDialog(this); progressDialog.setMaximumSteps(ids.size()); progressDialog.show(); for(int i =0; igetNodeData(ids.at(i), data); data.uncompressData(); int mapId, weight; Transform odomPose, groundTruth; std::string label; double stamp; QString msg; std::vector velocity; GPS gps; EnvSensors sensors; if(dbDriver_->getNodeInfo(data.id(), odomPose, mapId, weight, label, stamp, groundTruth, velocity, gps, sensors)) { Signature s = data; s.setPose(odomPose); cv::Mat ground, obstacles, empty; cv::Point3f viewpoint; if(ui_->checkBox_grid_regenerateFromSavedGrid->isChecked() && s.sensorData().gridCellSize() > 0.0f) { pcl::PointCloud::Ptr cloud = util3d::laserScanToPointCloudRGB(LaserScan::backwardCompatibility(s.sensorData().gridObstacleCellsRaw())); *cloud+=*util3d::laserScanToPointCloudRGB(LaserScan::backwardCompatibility(s.sensorData().gridGroundCellsRaw())); if(cloud->size()) { // update viewpoint if(s.sensorData().cameraModels().size()) { // average of all local transforms float sum = 0; for(unsigned int i=0; i 0.0f) { viewpoint.x /= sum; viewpoint.y /= sum; viewpoint.z /= sum; } } else { const Transform & t = s.sensorData().stereoCameraModel().localTransform(); viewpoint = cv::Point3f(t.x(), t.y(), t.z()); } grid.createLocalMap(LaserScan::backwardCompatibility(util3d::laserScanFromPointCloud(*cloud)), s.getPose(), ground, obstacles, empty, viewpoint); } } else { grid.createLocalMap(s, ground, obstacles, empty, viewpoint); } uInsert(generatedLocalMaps_, std::make_pair(data.id(), std::make_pair(std::make_pair(ground, obstacles),empty))); uInsert(generatedLocalMapsInfo_, std::make_pair(data.id(), std::make_pair(grid.getCellSize(), viewpoint))); msg = QString("Generated local occupancy grid map %1/%2 (%3s)").arg(i+1).arg((int)ids.size()).arg(time.ticks()); } progressDialog.appendText(msg); progressDialog.incrementStep(); QApplication::processEvents(); } progressDialog.setValue(progressDialog.maximumSteps()); if(graphes_.size()) { update3dView(); sliderIterationsValueChanged((int)graphes_.size()-1); } else { updateGrid(); } } void DatabaseViewer::view3DMap() { if(!ids_.size() || !dbDriver_) { QMessageBox::warning(this, tr("Cannot view 3D map"), tr("The database is empty...")); return; } if(graphes_.empty()) { this->updateGraphView(); if(graphes_.empty() || ui_->horizontalSlider_iterations->maximum() != (int)graphes_.size()-1) { QMessageBox::warning(this, tr("Cannot generate a graph"), tr("No graph in database?!")); return; } } std::map optimizedPoses; if(ui_->checkBox_alignScansCloudsWithGroundTruth->isChecked() && !groundTruthPoses_.empty()) { optimizedPoses = groundTruthPoses_; } else { optimizedPoses = uValueAt(graphes_, ui_->horizontalSlider_iterations->value()); } if(ui_->groupBox_posefiltering->isChecked()) { optimizedPoses = graph::radiusPosesFiltering(optimizedPoses, ui_->doubleSpinBox_posefilteringRadius->value(), ui_->doubleSpinBox_posefilteringAngle->value()*CV_PI/180.0); } if(optimizedPoses.size() > 0) { exportDialog_->setDBDriver(dbDriver_); exportDialog_->viewClouds(optimizedPoses, updateLinksWithModifications(links_), mapIds_, QMap(), std::map::Ptr, pcl::IndicesPtr> >(), std::map(), pathDatabase_, ui_->parameters_toolbox->getParameters()); } else { QMessageBox::critical(this, tr("Error"), tr("No neighbors found for node %1.").arg(ui_->spinBox_optimizationsFrom->value())); } } void DatabaseViewer::generate3DMap() { if(!ids_.size() || !dbDriver_) { QMessageBox::warning(this, tr("Cannot generate a graph"), tr("The database is empty...")); return; } if(graphes_.empty()) { this->updateGraphView(); if(graphes_.empty() || ui_->horizontalSlider_iterations->maximum() != (int)graphes_.size()-1) { QMessageBox::warning(this, tr("Cannot generate a graph"), tr("No graph in database?!")); return; } } std::map optimizedPoses; if(ui_->checkBox_alignScansCloudsWithGroundTruth->isChecked() && !groundTruthPoses_.empty()) { optimizedPoses = groundTruthPoses_; } else { optimizedPoses = uValueAt(graphes_, ui_->horizontalSlider_iterations->value()); } if(ui_->groupBox_posefiltering->isChecked()) { optimizedPoses = graph::radiusPosesFiltering(optimizedPoses, ui_->doubleSpinBox_posefilteringRadius->value(), ui_->doubleSpinBox_posefilteringAngle->value()*CV_PI/180.0); } if(optimizedPoses.size() > 0) { exportDialog_->setDBDriver(dbDriver_); exportDialog_->exportClouds(optimizedPoses, updateLinksWithModifications(links_), mapIds_, QMap(), std::map::Ptr, pcl::IndicesPtr> >(), std::map(), pathDatabase_, ui_->parameters_toolbox->getParameters()); } else { QMessageBox::critical(this, tr("Error"), tr("No neighbors found for node %1.").arg(ui_->spinBox_optimizationsFrom->value())); } } void DatabaseViewer::detectMoreLoopClosures() { if(graphes_.empty()) { this->updateGraphView(); if(graphes_.empty() || ui_->horizontalSlider_iterations->maximum() != (int)graphes_.size()-1) { QMessageBox::warning(this, tr("Cannot generate a graph"), tr("No graph in database?!")); return; } } const std::map & optimizedPoses = graphes_.back(); rtabmap::ProgressDialog * progressDialog = new rtabmap::ProgressDialog(this); progressDialog->setAttribute(Qt::WA_DeleteOnClose); progressDialog->setMaximumSteps(1); progressDialog->setCancelButtonVisible(true); progressDialog->setMinimumWidth(800); progressDialog->show(); const ParametersMap & parameters = ui_->parameters_toolbox->getParameters(); bool loopCovLimited = Parameters::defaultRGBDLoopCovLimited(); Parameters::parse(parameters, Parameters::kRGBDLoopCovLimited(), loopCovLimited); if(loopCovLimited) { odomMaxInf_ = graph::getMaxOdomInf(updateLinksWithModifications(links_)); } int iterations = ui_->spinBox_detectMore_iterations->value(); UASSERT(iterations > 0); int added = 0; std::multimap checkedLoopClosures; std::pair lastAdded(0,0); bool intraSession = ui_->checkBox_detectMore_intraSession->isChecked(); bool interSession = ui_->checkBox_detectMore_interSession->isChecked(); if(!interSession && !intraSession) { QMessageBox::warning(this, tr("Cannot detect more loop closures"), tr("Intra and inter session parameters are disabled! Enable one or both.")); return; } for(int n=0; n clusters = rtabmap::graph::radiusPosesClustering( std::map(optimizedPoses.upper_bound(0), optimizedPoses.end()), ui_->doubleSpinBox_detectMore_radius->value(), ui_->doubleSpinBox_detectMore_angle->value()*CV_PI/180.0); progressDialog->setMaximumSteps(progressDialog->maximumSteps()+(int)clusters.size()); progressDialog->appendText(tr("Looking for more loop closures, clusters found %1 clusters.").arg(clusters.size())); QApplication::processEvents(); if(progressDialog->isCanceled()) { break; } std::set addedLinks; int i=0; for(std::multimap::iterator iter=clusters.begin(); iter!= clusters.end() && !progressDialog->isCanceled(); ++iter, ++i) { int from = iter->first; int to = iter->second; if(from < to) { from = iter->second; to = iter->first; } int mapIdFrom = uValue(mapIds_, from, 0); int mapIdTo = uValue(mapIds_, to, 0); if((interSession && mapIdFrom != mapIdTo) || (intraSession && mapIdFrom == mapIdTo)) { // only add new links and one per cluster per iteration if(rtabmap::graph::findLink(checkedLoopClosures, from, to) == checkedLoopClosures.end()) { if(!findActiveLink(from, to).isValid() && !containsLink(linksRemoved_, from, to) && addedLinks.find(from) == addedLinks.end() && addedLinks.find(to) == addedLinks.end()) { checkedLoopClosures.insert(std::make_pair(from, to)); if(addConstraint(from, to, true)) { UINFO("Added new loop closure between %d and %d.", from, to); ++added; addedLinks.insert(from); addedLinks.insert(to); lastAdded.first = from; lastAdded.second = to; progressDialog->appendText(tr("Detected loop closure %1->%2! (%3/%4)").arg(from).arg(to).arg(i+1).arg(clusters.size())); QApplication::processEvents(); } } } } progressDialog->incrementStep(); if(i%100) { QApplication::processEvents(); } } UINFO("Iteration %d/%d: added %d loop closures.", n+1, iterations, (int)addedLinks.size()/2); progressDialog->appendText(tr("Iteration %1/%2: Detected %3 loop closures!").arg(n+1).arg(iterations).arg(addedLinks.size()/2)); if(addedLinks.size() == 0) { break; } } odomMaxInf_.clear(); if(added) { this->updateGraphView(); this->updateLoopClosuresSlider(lastAdded.first, lastAdded.second); } UINFO("Total added %d loop closures.", added); progressDialog->appendText(tr("Total new loop closures detected=%1").arg(added)); progressDialog->setValue(progressDialog->maximumSteps()); } void DatabaseViewer::updateAllNeighborCovariances() { updateAllCovariances(neighborLinks_); } void DatabaseViewer::updateAllLoopClosureCovariances() { updateAllCovariances(loopLinks_); } void DatabaseViewer::updateAllCovariances(const QList & links) { if(links.size()) { bool ok = false; double stddev = QInputDialog::getDouble(this, tr("Linear error"), tr("Std deviation (m)"), 0.01, 0.0001, 9, 4, &ok); if(!ok) return; double linearVar = stddev*stddev; stddev = QInputDialog::getDouble(this, tr("Angular error"), tr("Std deviation (deg)"), 1, 0.01, 45, 2, &ok)*M_PI/180.0; if(!ok) return; double angularVar = stddev*stddev; rtabmap::ProgressDialog * progressDialog = new rtabmap::ProgressDialog(this); progressDialog->setAttribute(Qt::WA_DeleteOnClose); progressDialog->setMaximumSteps(links.size()); progressDialog->setCancelButtonVisible(true); progressDialog->setMinimumWidth(800); progressDialog->show(); cv::Mat infMatrix = cv::Mat::eye(6,6,CV_64FC1); infMatrix(cv::Range(0,3), cv::Range(0,3))/=linearVar; infMatrix(cv::Range(3,6), cv::Range(3,6))/=angularVar; for(int i=0; i%d)", from, to); return; } currentLink = Link( currentLink.from(), currentLink.to(), currentLink.type(), currentLink.transform(), infMatrix.clone(), currentLink.userDataCompressed()); bool updated = false; std::multimap::iterator iter = linksRefined_.find(currentLink.from()); while(iter != linksRefined_.end() && iter->first == currentLink.from()) { if(iter->second.to() == currentLink.to() && iter->second.type() == currentLink.type()) { iter->second = currentLink; updated = true; break; } ++iter; } if(!updated) { linksRefined_.insert(std::make_pair(currentLink.from(), currentLink)); } progressDialog->appendText(tr("Updated link %1->%2 (%3/%4)").arg(from).arg(to).arg(i+1).arg(links.size())); progressDialog->incrementStep(); QApplication::processEvents(); if(progressDialog->isCanceled()) { break; } } this->updateGraphView(); progressDialog->setValue(progressDialog->maximumSteps()); progressDialog->appendText("Refining links finished!"); } } void DatabaseViewer::refineAllNeighborLinks() { refineAllLinks(neighborLinks_); } void DatabaseViewer::refineAllLoopClosureLinks() { refineAllLinks(loopLinks_); } void DatabaseViewer::refineAllLinks(const QList & links) { if(links.size()) { rtabmap::ProgressDialog * progressDialog = new rtabmap::ProgressDialog(this); progressDialog->setAttribute(Qt::WA_DeleteOnClose); progressDialog->setMaximumSteps(links.size()); progressDialog->setCancelButtonVisible(true); progressDialog->setMinimumWidth(800); progressDialog->show(); for(int i=0; irefineConstraint(links[i].from(), links[i].to(), true); progressDialog->appendText(tr("Refined link %1->%2 (%3/%4)").arg(from).arg(to).arg(i+1).arg(links.size())); progressDialog->incrementStep(); QApplication::processEvents(); if(progressDialog->isCanceled()) { break; } } this->updateGraphView(); progressDialog->setValue(progressDialog->maximumSteps()); progressDialog->appendText("Refining links finished!"); } } void DatabaseViewer::resetAllChanges() { linksAdded_.clear(); linksRefined_.clear(); linksRemoved_.clear(); generatedLocalMaps_.clear(); generatedLocalMapsInfo_.clear(); modifiedLaserScans_.clear(); updateLoopClosuresSlider(); this->updateGraphView(); } void DatabaseViewer::sliderAValueChanged(int value) { this->update(value, ui_->label_indexA, ui_->label_parentsA, ui_->label_childrenA, ui_->label_weightA, ui_->label_labelA, ui_->label_stampA, ui_->graphicsView_A, ui_->label_idA, ui_->label_mapA, ui_->label_poseA, ui_->label_velA, ui_->label_calibA, ui_->label_scanA, ui_->label_gravityA, ui_->label_gpsA, ui_->label_sensorsA, true); } void DatabaseViewer::sliderBValueChanged(int value) { this->update(value, ui_->label_indexB, ui_->label_parentsB, ui_->label_childrenB, ui_->label_weightB, ui_->label_labelB, ui_->label_stampB, ui_->graphicsView_B, ui_->label_idB, ui_->label_mapB, ui_->label_poseB, ui_->label_velB, ui_->label_calibB, ui_->label_scanB, ui_->label_gravityB, ui_->label_gpsB, ui_->label_sensorsB, true); } void DatabaseViewer::update(int value, QLabel * labelIndex, QLabel * labelParents, QLabel * labelChildren, QLabel * weight, QLabel * label, QLabel * stamp, rtabmap::ImageView * view, QLabel * labelId, QLabel * labelMapId, QLabel * labelPose, QLabel * labelVelocity, QLabel * labelCalib, QLabel * labelScan, QLabel * labelGravity, QLabel * labelGps, QLabel * labelSensors, bool updateConstraintView) { lastSliderIndexBrowsed_ = value; UTimer timer; labelIndex->setText(QString::number(value)); labelParents->clear(); labelChildren->clear(); weight->clear(); label->clear(); labelMapId->clear(); labelPose->clear(); labelVelocity->clear(); stamp->clear(); labelCalib->clear(); labelScan ->clear(); labelGravity->clear(); labelGps->clear(); labelSensors->clear(); QRectF rect; if(value >= 0 && value < ids_.size()) { view->clear(); int id = ids_.at(value); int mapId = -1; labelId->setText(QString::number(id)); if(id>0) { //image QImage img; cv::Mat imgDepth; if(dbDriver_) { SensorData data; dbDriver_->getNodeData(id, data); data.uncompressData(); if(!data.imageRaw().empty()) { img = uCvMat2QImage(ui_->label_indexB==labelIndex?data.imageRaw():data.imageRaw()); } if(!data.depthOrRightRaw().empty()) { cv::Mat depth =data.depthOrRightRaw(); if(!data.depthRaw().empty()) { if(ui_->spinBox_mesh_fillDepthHoles->value() > 0) { depth = util2d::fillDepthHoles(depth, ui_->spinBox_mesh_fillDepthHoles->value(), float(ui_->spinBox_mesh_depthError->value())/100.0f); } } imgDepth = depth; } std::list ids; ids.push_back(id); std::list signatures; dbDriver_->loadSignatures(ids, signatures); if(signatures.size() && signatures.front()!=0 && signatures.front()->getWords().size()) { view->setFeatures(signatures.front()->getWords(), data.depthOrRightRaw().type() == CV_8UC1?cv::Mat():data.depthOrRightRaw(), Qt::yellow); } Transform odomPose, g; int w; std::string l; double s; std::vector v; GPS gps; EnvSensors sensors; dbDriver_->getNodeInfo(id, odomPose, mapId, w, l, s, g, v, gps, sensors); weight->setNum(w); label->setText(l.c_str()); float x,y,z,roll,pitch,yaw; odomPose.getTranslationAndEulerAngles(x,y,z,roll, pitch,yaw); labelPose->setText(QString("%1xyz=(%2,%3,%4)\nrpy=(%5,%6,%7)").arg(odomPose.isIdentity()?"* ":"").arg(x).arg(y).arg(z).arg(roll).arg(pitch).arg(yaw)); if(odomPoses_.size() && odomPoses_.find(id) == odomPoses_.end()) { labelPose->setText(labelPose->text() + "\n"); } if(s!=0.0) { stamp->setText(QString::number(s, 'f')); stamp->setToolTip(QDateTime::fromMSecsSinceEpoch(s*1000.0).toString("dd.MM.yyyy hh:mm:ss.zzz")); } if(v.size()==6) { labelVelocity->setText(QString("vx=%1 vy=%2 vz=%3 vroll=%4 vpitch=%5 vyaw=%6").arg(v[0]).arg(v[1]).arg(v[2]).arg(v[3]).arg(v[4]).arg(v[5])); } std::multimap gravityLink; dbDriver_->loadLinks(id, gravityLink, Link::kGravity); if(!gravityLink.empty()) { float roll,pitch,yaw; gravityLink.begin()->second.transform().getEulerAngles(roll, pitch, yaw); Eigen::Vector3d v = Transform(0,0,0,roll,pitch,0).toEigen3d() * -Eigen::Vector3d::UnitZ(); labelGravity->setText(QString("x=%1 y=%2 z=%3").arg(v[0]).arg(v[1]).arg(v[2])); labelGravity->setToolTip(QString("roll=%1 pitch=%2 yaw=%3").arg(roll).arg(pitch).arg(yaw)); } if(gps.stamp()>0.0) { labelGps->setText(QString("stamp=%1 longitude=%2 latitude=%3 altitude=%4m error=%5m bearing=%6deg").arg(QString::number(gps.stamp(), 'f')).arg(gps.longitude()).arg(gps.latitude()).arg(gps.altitude()).arg(gps.error()).arg(gps.bearing())); labelGps->setToolTip(QDateTime::fromMSecsSinceEpoch(gps.stamp()*1000.0).toString("dd.MM.yyyy hh:mm:ss.zzz")); } if(sensors.size()) { QString sensorsStr; QString tooltipStr; for(EnvSensors::iterator iter=sensors.begin(); iter!=sensors.end(); ++iter) { if(iter != sensors.begin()) { sensorsStr += " | "; tooltipStr += " | "; } if(iter->first == EnvSensor::kWifiSignalStrength) { sensorsStr += uFormat("%.1f dbm", iter->second.value()).c_str(); tooltipStr += "Wifi signal strength"; } else if(iter->first == EnvSensor::kAmbientTemperature) { sensorsStr += uFormat("%.1f \u00B0C", iter->second.value()).c_str(); tooltipStr += "Ambient Temperature"; } else if(iter->first == EnvSensor::kAmbientAirPressure) { sensorsStr += uFormat("%.1f hPa", iter->second.value()).c_str(); tooltipStr += "Ambient Air Pressure"; } else if(iter->first == EnvSensor::kAmbientLight) { sensorsStr += uFormat("%.0f lx", iter->second.value()).c_str(); tooltipStr += "Ambient Light"; } else if(iter->first == EnvSensor::kAmbientRelativeHumidity) { sensorsStr += uFormat("%.0f %%", iter->second.value()).c_str(); tooltipStr += "Ambient Relative Humidity"; } else { sensorsStr += uFormat("%.2f", iter->second.value()).c_str(); tooltipStr += QString("Type %1").arg((int)iter->first); } } labelSensors->setText(sensorsStr); labelSensors->setToolTip(tooltipStr); } if(data.cameraModels().size() || data.stereoCameraModel().isValidForProjection()) { std::stringstream calibrationDetails; if(data.cameraModels().size()) { if(!data.depthRaw().empty() && data.depthRaw().cols!=data.imageRaw().cols && data.imageRaw().cols) { labelCalib->setText(tr("%1 %2x%3 [%8x%9] fx=%4 fy=%5 cx=%6 cy=%7 T=%10 [%11 %12 %13 %14; %15 %16 %17 %18; %19 %20 %21 %22]") .arg(data.cameraModels().size()) .arg(data.cameraModels()[0].imageWidth()>0?data.cameraModels()[0].imageWidth():data.imageRaw().cols/data.cameraModels().size()) .arg(data.cameraModels()[0].imageHeight()>0?data.cameraModels()[0].imageHeight():data.imageRaw().rows) .arg(data.cameraModels()[0].fx()) .arg(data.cameraModels()[0].fy()) .arg(data.cameraModels()[0].cx()) .arg(data.cameraModels()[0].cy()) .arg(data.depthRaw().cols/data.cameraModels().size()) .arg(data.depthRaw().rows) .arg(data.cameraModels()[0].localTransform().prettyPrint().c_str()) .arg(data.cameraModels()[0].localTransform().r11()).arg(data.cameraModels()[0].localTransform().r12()).arg(data.cameraModels()[0].localTransform().r13()).arg(data.cameraModels()[0].localTransform().o14()) .arg(data.cameraModels()[0].localTransform().r21()).arg(data.cameraModels()[0].localTransform().r22()).arg(data.cameraModels()[0].localTransform().r23()).arg(data.cameraModels()[0].localTransform().o24()) .arg(data.cameraModels()[0].localTransform().r31()).arg(data.cameraModels()[0].localTransform().r32()).arg(data.cameraModels()[0].localTransform().r33()).arg(data.cameraModels()[0].localTransform().o34())); } else { labelCalib->setText(tr("%1 %2x%3 fx=%4 fy=%5 cx=%6 cy=%7 T=%8 [%9 %10 %11 %12; %13 %14 %15 %16; %17 %18 %19 %20]") .arg(data.cameraModels().size()) .arg(data.cameraModels()[0].imageWidth()>0?data.cameraModels()[0].imageWidth():data.imageRaw().cols/data.cameraModels().size()) .arg(data.cameraModels()[0].imageHeight()>0?data.cameraModels()[0].imageHeight():data.imageRaw().rows) .arg(data.cameraModels()[0].fx()) .arg(data.cameraModels()[0].fy()) .arg(data.cameraModels()[0].cx()) .arg(data.cameraModels()[0].cy()) .arg(data.cameraModels()[0].localTransform().prettyPrint().c_str()) .arg(data.cameraModels()[0].localTransform().r11()).arg(data.cameraModels()[0].localTransform().r12()).arg(data.cameraModels()[0].localTransform().r13()).arg(data.cameraModels()[0].localTransform().o14()) .arg(data.cameraModels()[0].localTransform().r21()).arg(data.cameraModels()[0].localTransform().r22()).arg(data.cameraModels()[0].localTransform().r23()).arg(data.cameraModels()[0].localTransform().o24()) .arg(data.cameraModels()[0].localTransform().r31()).arg(data.cameraModels()[0].localTransform().r32()).arg(data.cameraModels()[0].localTransform().r33()).arg(data.cameraModels()[0].localTransform().o34())); } for(unsigned int i=0; i0?data.stereoCameraModel().left().imageWidth():data.imageRaw().cols) .arg(data.stereoCameraModel().left().imageHeight()>0?data.stereoCameraModel().left().imageHeight():data.imageRaw().rows) .arg(data.stereoCameraModel().left().fx()) .arg(data.stereoCameraModel().left().fy()) .arg(data.stereoCameraModel().left().cx()) .arg(data.stereoCameraModel().left().cy()) .arg(data.stereoCameraModel().baseline()) .arg(data.stereoCameraModel().localTransform().prettyPrint().c_str()) .arg(data.stereoCameraModel().localTransform().r11()).arg(data.stereoCameraModel().localTransform().r12()).arg(data.stereoCameraModel().localTransform().r13()).arg(data.stereoCameraModel().localTransform().o14()) .arg(data.stereoCameraModel().localTransform().r21()).arg(data.stereoCameraModel().localTransform().r22()).arg(data.stereoCameraModel().localTransform().r23()).arg(data.stereoCameraModel().localTransform().o24()) .arg(data.stereoCameraModel().localTransform().r31()).arg(data.stereoCameraModel().localTransform().r32()).arg(data.stereoCameraModel().localTransform().r33()).arg(data.stereoCameraModel().localTransform().o34())); calibrationDetails << "Left:" << " Size=" << data.stereoCameraModel().left().imageWidth() << "x" << data.stereoCameraModel().left().imageHeight() << std::endl; if( data.stereoCameraModel().left().K_raw().total()) calibrationDetails << "K=" << data.stereoCameraModel().left().K_raw() << std::endl; if( data.stereoCameraModel().left().D_raw().total()) calibrationDetails << "D=" << data.stereoCameraModel().left().D_raw() << std::endl; if( data.stereoCameraModel().left().R().total()) calibrationDetails << "R=" << data.stereoCameraModel().left().R() << std::endl; if( data.stereoCameraModel().left().P().total()) calibrationDetails << "P=" << data.stereoCameraModel().left().P() << std::endl; calibrationDetails << std::endl; calibrationDetails << "Right:" << " Size=" << data.stereoCameraModel().right().imageWidth() << "x" << data.stereoCameraModel().right().imageHeight() << std::endl; if( data.stereoCameraModel().right().K_raw().total()) calibrationDetails << "K=" << data.stereoCameraModel().right().K_raw() << std::endl; if( data.stereoCameraModel().right().D_raw().total()) calibrationDetails << "D=" << data.stereoCameraModel().right().D_raw() << std::endl; if( data.stereoCameraModel().right().R().total()) calibrationDetails << "R=" << data.stereoCameraModel().right().R() << std::endl; if( data.stereoCameraModel().right().P().total()) calibrationDetails << "P=" << data.stereoCameraModel().right().P() << std::endl; calibrationDetails << std::endl; if( data.stereoCameraModel().R().total()) calibrationDetails << "R=" << data.stereoCameraModel().R() << std::endl; if( data.stereoCameraModel().T().total()) calibrationDetails << "T=" << data.stereoCameraModel().T() << std::endl; if( data.stereoCameraModel().F().total()) calibrationDetails << "F=" << data.stereoCameraModel().F() << std::endl; if( data.stereoCameraModel().E().total()) calibrationDetails << "E=" << data.stereoCameraModel().E() << std::endl; } labelCalib->setToolTip(calibrationDetails.str().c_str()); } else { labelCalib->setText("NA"); } if(data.laserScanRaw().size()) { labelScan->setText(tr("Format=%1 Points=%2 [max=%3] Range=[%4->%5 m] Angle=[%6->%7 rad inc=%8] Has [Color=%9 2D=%10 Normals=%11 Intensity=%12]") .arg(data.laserScanRaw().formatName().c_str()) .arg(data.laserScanRaw().size()) .arg(data.laserScanRaw().maxPoints()) .arg(data.laserScanRaw().rangeMin()) .arg(data.laserScanRaw().rangeMax()) .arg(data.laserScanRaw().angleMin()) .arg(data.laserScanRaw().angleMax()) .arg(data.laserScanRaw().angleIncrement()) .arg(data.laserScanRaw().hasRGB()?1:0) .arg(data.laserScanRaw().is2d()?1:0) .arg(data.laserScanRaw().hasNormals()?1:0) .arg(data.laserScanRaw().hasIntensity()?1:0)); } //stereo if(!data.depthOrRightRaw().empty() && data.depthOrRightRaw().type() == CV_8UC1) { this->updateStereo(&data); } else { stereoViewer_->clear(); ui_->graphicsView_stereo->clear(); } // 3d view if(cloudViewer_->isVisible()) { Transform pose = Transform::getIdentity(); if(signatures.size() && ui_->checkBox_odomFrame_3dview->isChecked()) { float x, y, z, roll, pitch, yaw; (*signatures.begin())->getPose().getTranslationAndEulerAngles(x, y, z, roll, pitch, yaw); pose = Transform(0,0,z,roll,pitch,0); } cloudViewer_->removeAllFrustums(); cloudViewer_->removeCloud("mesh"); cloudViewer_->removeCloud("cloud"); cloudViewer_->removeCloud("scan"); cloudViewer_->removeCloud("map"); cloudViewer_->removeCloud("ground"); cloudViewer_->removeCloud("obstacles"); cloudViewer_->removeCloud("empty_cells"); cloudViewer_->removeCloud("words"); cloudViewer_->removeOctomap(); if(ui_->checkBox_showCloud->isChecked() || ui_->checkBox_showMesh->isChecked()) { if(!data.depthOrRightRaw().empty()) { if(!data.imageRaw().empty()) { pcl::PointCloud::Ptr cloud; pcl::IndicesPtr indices(new std::vector); if(!data.depthRaw().empty() && data.cameraModels().size()==1) { cv::Mat depth = data.depthRaw(); if(ui_->spinBox_mesh_fillDepthHoles->value() > 0) { depth = util2d::fillDepthHoles(depth, ui_->spinBox_mesh_fillDepthHoles->value(), float(ui_->spinBox_mesh_depthError->value())/100.0f); } cloud = util3d::cloudFromDepthRGB( data.imageRaw(), depth, data.cameraModels()[0], ui_->spinBox_decimation->value(),0,0,indices.get()); if(indices->size()) { cloud = util3d::transformPointCloud(cloud, data.cameraModels()[0].localTransform()); } } else { cloud = util3d::cloudRGBFromSensorData(data, ui_->spinBox_decimation->value(), 0, 0, indices.get(), ui_->parameters_toolbox->getParameters()); } if(indices->size()) { if(ui_->doubleSpinBox_voxelSize->value() > 0.0) { cloud = util3d::voxelize(cloud, indices, ui_->doubleSpinBox_voxelSize->value()); } if(ui_->checkBox_showMesh->isChecked() && !cloud->is_dense) { Eigen::Vector3f viewpoint(0.0f,0.0f,0.0f); if(data.cameraModels().size() && !data.cameraModels()[0].localTransform().isNull()) { viewpoint[0] = data.cameraModels()[0].localTransform().x(); viewpoint[1] = data.cameraModels()[0].localTransform().y(); viewpoint[2] = data.cameraModels()[0].localTransform().z(); } else if(!data.stereoCameraModel().localTransform().isNull()) { viewpoint[0] = data.stereoCameraModel().localTransform().x(); viewpoint[1] = data.stereoCameraModel().localTransform().y(); viewpoint[2] = data.stereoCameraModel().localTransform().z(); } std::vector polygons = util3d::organizedFastMesh( cloud, float(ui_->spinBox_mesh_angleTolerance->value())*M_PI/180.0f, ui_->checkBox_mesh_quad->isChecked(), ui_->spinBox_mesh_triangleSize->value(), viewpoint); if(ui_->spinBox_mesh_minClusterSize->value()) { // filter polygons std::vector > neighbors; std::vector > vertexToPolygons; util3d::createPolygonIndexes(polygons, cloud->size(), neighbors, vertexToPolygons); std::list > clusters = util3d::clusterPolygons( neighbors, ui_->spinBox_mesh_minClusterSize->value()); std::vector filteredPolygons(polygons.size()); int oi=0; for(std::list >::iterator iter=clusters.begin(); iter!=clusters.end(); ++iter) { for(std::list::iterator jter=iter->begin(); jter!=iter->end(); ++jter) { filteredPolygons[oi++] = polygons.at(*jter); } } filteredPolygons.resize(oi); polygons = filteredPolygons; } cloudViewer_->addCloudMesh("mesh", cloud, polygons, pose); } if(ui_->checkBox_showCloud->isChecked()) { cloudViewer_->addCloud("cloud", cloud, pose); } } } else if(ui_->checkBox_showCloud->isChecked()) { pcl::PointCloud::Ptr cloud; pcl::IndicesPtr indices(new std::vector); cloud = util3d::cloudFromSensorData(data, ui_->spinBox_decimation->value(), 0, 0, indices.get(), ui_->parameters_toolbox->getParameters()); if(indices->size()) { if(ui_->doubleSpinBox_voxelSize->value() > 0.0) { cloud = util3d::voxelize(cloud, indices, ui_->doubleSpinBox_voxelSize->value()); } cloudViewer_->addCloud("cloud", cloud, pose); } } } } //frustums if(cloudViewer_->isFrustumShown()) { if(data.cameraModels().size()) { cloudViewer_->updateCameraFrustums(pose, data.cameraModels()); } else { cloudViewer_->updateCameraFrustum(pose, data.stereoCameraModel()); } } //words if(ui_->checkBox_showWords->isChecked() && signatures.size()) { pcl::PointCloud::Ptr cloud(new pcl::PointCloud); cloud->resize((*signatures.begin())->getWords3().size()); int i=0; for(std::multimap::const_iterator iter=(*signatures.begin())->getWords3().begin(); iter!=(*signatures.begin())->getWords3().end(); ++iter) { cloud->at(i++) = pcl::PointXYZ(iter->second.x, iter->second.y, iter->second.z); } if(cloud->size()) { cloud = rtabmap::util3d::removeNaNFromPointCloud(cloud); } if(cloud->size()) { cloudViewer_->addCloud("words", cloud, pose, Qt::red); } } //add scan LaserScan laserScanRaw = data.laserScanRaw(); if(modifiedLaserScans_.find(id)!=modifiedLaserScans_.end()) { laserScanRaw = modifiedLaserScans_.at(id); } if(ui_->checkBox_showScan->isChecked() && laserScanRaw.size()) { if(laserScanRaw.hasRGB() && laserScanRaw.hasNormals()) { pcl::PointCloud::Ptr scan = util3d::laserScanToPointCloudRGBNormal(laserScanRaw, laserScanRaw.localTransform()); cloudViewer_->addCloud("scan", scan, pose, Qt::yellow); } else if(laserScanRaw.hasIntensity() && laserScanRaw.hasNormals()) { pcl::PointCloud::Ptr scan = util3d::laserScanToPointCloudINormal(laserScanRaw, laserScanRaw.localTransform()); cloudViewer_->addCloud("scan", scan, pose, Qt::yellow); } else if(laserScanRaw.hasNormals()) { pcl::PointCloud::Ptr scan = util3d::laserScanToPointCloudNormal(laserScanRaw, laserScanRaw.localTransform()); cloudViewer_->addCloud("scan", scan, pose, Qt::yellow); } else if(laserScanRaw.hasRGB()) { pcl::PointCloud::Ptr scan = util3d::laserScanToPointCloudRGB(laserScanRaw, laserScanRaw.localTransform()); cloudViewer_->addCloud("scan", scan, pose, Qt::yellow); } else { pcl::PointCloud::Ptr scan = util3d::laserScanToPointCloud(laserScanRaw, laserScanRaw.localTransform()); cloudViewer_->addCloud("scan", scan, pose, Qt::yellow); } } //add occupancy grid if(ui_->checkBox_showMap->isChecked() || ui_->checkBox_showGrid->isChecked()) { std::map, cv::Mat> > localMaps; std::map > localMapsInfo; if(generatedLocalMaps_.find(data.id()) != generatedLocalMaps_.end()) { localMaps.insert(*generatedLocalMaps_.find(data.id())); localMapsInfo.insert(*generatedLocalMapsInfo_.find(data.id())); } else if(!data.gridGroundCellsRaw().empty() || !data.gridObstacleCellsRaw().empty()) { localMaps.insert(std::make_pair(data.id(), std::make_pair(std::make_pair(data.gridGroundCellsRaw(), data.gridObstacleCellsRaw()), data.gridEmptyCellsRaw()))); localMapsInfo.insert(std::make_pair(data.id(), std::make_pair(data.gridCellSize(), data.gridViewPoint()))); } if(!localMaps.empty()) { std::map poses; poses.insert(std::make_pair(data.id(), pose)); #ifdef RTABMAP_OCTOMAP OctoMap * octomap = 0; if(ui_->checkBox_octomap->isChecked() && (!localMaps.begin()->second.first.first.empty() || !localMaps.begin()->second.first.second.empty()) && (localMaps.begin()->second.first.first.empty() || localMaps.begin()->second.first.first.channels() > 2) && (localMaps.begin()->second.first.second.empty() || localMaps.begin()->second.first.second.channels() > 2) && (localMaps.begin()->second.second.empty() || localMaps.begin()->second.second.channels() > 2) && localMapsInfo.begin()->second.first > 0.0f) { //create local octomap octomap = new OctoMap(localMapsInfo.begin()->second.first); octomap->addToCache(data.id(), localMaps.begin()->second.first.first, localMaps.begin()->second.first.second, localMaps.begin()->second.second, localMapsInfo.begin()->second.second); octomap->update(poses); } #endif if(ui_->checkBox_showMap->isChecked()) { float xMin=0.0f, yMin=0.0f; cv::Mat map8S; ParametersMap parameters = ui_->parameters_toolbox->getParameters(); float gridCellSize = Parameters::defaultGridCellSize(); Parameters::parse(parameters, Parameters::kGridCellSize(), gridCellSize); #ifdef RTABMAP_OCTOMAP if(octomap) { map8S = octomap->createProjectionMap(xMin, yMin, gridCellSize, 0); } else #endif { OccupancyGrid grid(ui_->parameters_toolbox->getParameters()); grid.setCellSize(gridCellSize); grid.addToCache(data.id(), localMaps.begin()->second.first.first, localMaps.begin()->second.first.second, localMaps.begin()->second.second); grid.update(poses); map8S = grid.getMap(xMin, yMin); } if(!map8S.empty()) { //convert to gray scaled map cloudViewer_->addOccupancyGridMap(util3d::convertMap2Image8U(map8S), gridCellSize, xMin, yMin, 1); } } if(ui_->checkBox_showGrid->isChecked()) { #ifdef RTABMAP_OCTOMAP if(octomap) { if(ui_->comboBox_octomap_rendering_type->currentIndex()== 0) { pcl::IndicesPtr obstacles(new std::vector); pcl::IndicesPtr empty(new std::vector); pcl::IndicesPtr ground(new std::vector); pcl::PointCloud::Ptr cloud = octomap->createCloud(ui_->spinBox_grid_depth->value(), obstacles.get(), empty.get(), ground.get()); if(octomap->hasColor()) { pcl::PointCloud::Ptr obstaclesCloud(new pcl::PointCloud); pcl::copyPointCloud(*cloud, *obstacles, *obstaclesCloud); cloudViewer_->addCloud("obstacles", obstaclesCloud, Transform::getIdentity(), QColor(ui_->lineEdit_obstacleColor->text())); cloudViewer_->setCloudPointSize("obstacles", 5); pcl::PointCloud::Ptr groundCloud(new pcl::PointCloud); pcl::copyPointCloud(*cloud, *ground, *groundCloud); cloudViewer_->addCloud("ground", groundCloud, Transform::getIdentity(), QColor(ui_->lineEdit_groundColor->text())); cloudViewer_->setCloudPointSize("ground", 5); } else { pcl::PointCloud::Ptr obstaclesCloud(new pcl::PointCloud); pcl::copyPointCloud(*cloud, *obstacles, *obstaclesCloud); cloudViewer_->addCloud("obstacles", obstaclesCloud, Transform::getIdentity(), QColor(ui_->lineEdit_obstacleColor->text())); cloudViewer_->setCloudPointSize("obstacles", 5); pcl::PointCloud::Ptr groundCloud(new pcl::PointCloud); pcl::copyPointCloud(*cloud, *ground, *groundCloud); cloudViewer_->addCloud("ground", groundCloud, Transform::getIdentity(), QColor(ui_->lineEdit_groundColor->text())); cloudViewer_->setCloudPointSize("ground", 5); } if(ui_->checkBox_grid_empty->isChecked()) { pcl::PointCloud::Ptr emptyCloud(new pcl::PointCloud); pcl::copyPointCloud(*cloud, *empty, *emptyCloud); cloudViewer_->addCloud("empty_cells", emptyCloud, Transform::getIdentity(), QColor(ui_->lineEdit_emptyColor->text())); cloudViewer_->setCloudOpacity("empty_cells", 0.5); cloudViewer_->setCloudPointSize("empty_cells", 5); } } else { cloudViewer_->addOctomap(octomap, ui_->spinBox_grid_depth->value(), ui_->comboBox_octomap_rendering_type->currentIndex()>1); } } else #endif { // occupancy cloud LaserScan scan = LaserScan::backwardCompatibility(localMaps.begin()->second.first.first); if(scan.hasRGB()) { cloudViewer_->addCloud("ground", util3d::laserScanToPointCloudRGB(scan), pose, QColor(ui_->lineEdit_groundColor->text())); } else { cloudViewer_->addCloud("ground", util3d::laserScanToPointCloud(scan), pose, QColor(ui_->lineEdit_groundColor->text())); } scan = LaserScan::backwardCompatibility(localMaps.begin()->second.first.second); if(scan.hasRGB()) { cloudViewer_->addCloud("obstacles", util3d::laserScanToPointCloudRGB(scan), pose, QColor(ui_->lineEdit_obstacleColor->text())); } else { cloudViewer_->addCloud("obstacles", util3d::laserScanToPointCloud(scan), pose, QColor(ui_->lineEdit_obstacleColor->text())); } cloudViewer_->setCloudPointSize("ground", 5); cloudViewer_->setCloudPointSize("obstacles", 5); if(ui_->checkBox_grid_empty->isChecked()) { cloudViewer_->addCloud("empty_cells", util3d::laserScanToPointCloud(LaserScan::backwardCompatibility(localMaps.begin()->second.second)), pose, QColor(ui_->lineEdit_emptyColor->text())); cloudViewer_->setCloudPointSize("empty_cells", 5); cloudViewer_->setCloudOpacity("empty_cells", 0.5); } } } #ifdef RTABMAP_OCTOMAP if(octomap) { delete octomap; } #endif } } cloudViewer_->update(); } if(signatures.size()) { UASSERT(signatures.front() != 0 && signatures.size() == 1); delete signatures.front(); signatures.clear(); } } if(!img.isNull()) { view->setImage(img); rect = img.rect(); } else { ULOGGER_DEBUG("Image is empty"); } if(!imgDepth.empty()) { view->setImageDepth(imgDepth); if(img.isNull()) { rect.setWidth(imgDepth.cols); rect.setHeight(imgDepth.rows); } } else { ULOGGER_DEBUG("Image depth is empty"); } // loops std::multimap links; dbDriver_->loadLinks(id, links); if(links.size()) { QString strParents, strChildren; for(std::multimap::iterator iter=links.begin(); iter!=links.end(); ++iter) { if(iter->second.type() != Link::kNeighbor && iter->second.type() != Link::kNeighborMerged) { if(iter->first < id) { strChildren.append(QString("%1 ").arg(iter->first)); } else { strParents.append(QString("%1 ").arg(iter->first)); } } } labelParents->setText(strParents); labelChildren->setText(strChildren); } } if(mapId>=0) { labelMapId->setText(QString::number(mapId)); } } else if(value != 0) { ULOGGER_ERROR("Slider index out of range ?"); } updateConstraintButtons(); updateWordsMatching(); if(updateConstraintView && ui_->dockWidget_constraints->isVisible()) { // update constraint view int from = ids_.at(ui_->horizontalSlider_A->value()); int to = ids_.at(ui_->horizontalSlider_B->value()); bool set = false; for(int i=0; ihorizontalSlider_loops->value()) { ui_->horizontalSlider_loops->blockSignals(true); ui_->horizontalSlider_loops->setValue(i); ui_->horizontalSlider_loops->blockSignals(false); this->updateConstraintView(loopLinks_[i].from() == from?loopLinks_.at(i):loopLinks_.at(i).inverse(), false); } ui_->horizontalSlider_neighbors->blockSignals(true); ui_->horizontalSlider_neighbors->setValue(0); ui_->horizontalSlider_neighbors->blockSignals(false); set = true; break; } } if(i < neighborLinks_.size()) { if((neighborLinks_[i].from() == from && neighborLinks_[i].to() == to) || (neighborLinks_[i].from() == to && neighborLinks_[i].to() == from)) { if(i != ui_->horizontalSlider_neighbors->value()) { ui_->horizontalSlider_neighbors->blockSignals(true); ui_->horizontalSlider_neighbors->setValue(i); ui_->horizontalSlider_neighbors->blockSignals(false); this->updateConstraintView(neighborLinks_[i].from() == from?neighborLinks_.at(i):neighborLinks_.at(i).inverse(), false); } ui_->horizontalSlider_loops->blockSignals(true); ui_->horizontalSlider_loops->setValue(0); ui_->horizontalSlider_loops->blockSignals(false); set = true; break; } } } if(!set) { ui_->horizontalSlider_loops->blockSignals(true); ui_->horizontalSlider_neighbors->blockSignals(true); ui_->horizontalSlider_loops->setValue(0); ui_->horizontalSlider_neighbors->setValue(0); ui_->horizontalSlider_loops->blockSignals(false); ui_->horizontalSlider_neighbors->blockSignals(false); constraintsViewer_->removeAllClouds(); Link link = this->findActiveLink(from, to); if(link.isValid() && link.type() != Link::kGravity) { this->updateConstraintView(link, false); } else if(graphes_.size()) { // make a fake link using globally optimized poses std::map optimizedPoses = uValueAt(graphes_, ui_->horizontalSlider_iterations->value()); if(optimizedPoses.size() > 0) { std::map::iterator fromIter = optimizedPoses.find(from); std::map::iterator toIter = optimizedPoses.find(to); if(fromIter != optimizedPoses.end() && toIter != optimizedPoses.end()) { Link link(from, to, Link::kUndef, fromIter->second.inverse() * toIter->second); this->updateConstraintView(link, false); } } } constraintsViewer_->update(); } } if(rect.isValid()) { view->setSceneRect(rect); } } void DatabaseViewer::updateLoggerLevel() { if(this->parent() == 0) { ULogger::setLevel((ULogger::Level)ui_->comboBox_logger_level->currentIndex()); } } void DatabaseViewer::updateStereo() { if(ui_->horizontalSlider_A->maximum()) { int id = ids_.at(ui_->horizontalSlider_A->value()); SensorData data; dbDriver_->getNodeData(id, data); data.uncompressData(); updateStereo(&data); } } void DatabaseViewer::updateStereo(const SensorData * data) { if(data && ui_->dockWidget_stereoView->isVisible() && !data->imageRaw().empty() && !data->depthOrRightRaw().empty() && data->depthOrRightRaw().type() == CV_8UC1 && data->stereoCameraModel().isValidForProjection()) { cv::Mat leftMono; if(data->imageRaw().channels() == 3) { cv::cvtColor(data->imageRaw(), leftMono, CV_BGR2GRAY); } else { leftMono = data->imageRaw(); } UTimer timer; ParametersMap parameters = ui_->parameters_toolbox->getParameters(); Stereo * stereo = Stereo::create(parameters); // generate kpts std::vector kpts; uInsert(parameters, ParametersPair(Parameters::kKpMaxFeatures(), parameters.at(Parameters::kVisMaxFeatures()))); uInsert(parameters, ParametersPair(Parameters::kKpMinDepth(), parameters.at(Parameters::kVisMinDepth()))); uInsert(parameters, ParametersPair(Parameters::kKpMaxDepth(), parameters.at(Parameters::kVisMaxDepth()))); uInsert(parameters, ParametersPair(Parameters::kKpDetectorStrategy(), parameters.at(Parameters::kVisFeatureType()))); uInsert(parameters, ParametersPair(Parameters::kKpRoiRatios(), parameters.at(Parameters::kVisRoiRatios()))); uInsert(parameters, ParametersPair(Parameters::kKpSubPixEps(), parameters.at(Parameters::kVisSubPixEps()))); uInsert(parameters, ParametersPair(Parameters::kKpSubPixIterations(), parameters.at(Parameters::kVisSubPixIterations()))); uInsert(parameters, ParametersPair(Parameters::kKpSubPixWinSize(), parameters.at(Parameters::kVisSubPixWinSize()))); Feature2D * kptDetector = Feature2D::create(parameters); kpts = kptDetector->generateKeypoints(leftMono); delete kptDetector; float timeKpt = timer.ticks(); std::vector leftCorners; cv::KeyPoint::convert(kpts, leftCorners); // Find features in the new right image std::vector status; std::vector rightCorners; rightCorners = stereo->computeCorrespondences( leftMono, data->rightRaw(), leftCorners, status); delete stereo; float timeStereo = timer.ticks(); pcl::PointCloud::Ptr cloud(new pcl::PointCloud); cloud->resize(kpts.size()); float bad_point = std::numeric_limits::quiet_NaN (); UASSERT(status.size() == kpts.size()); int oi = 0; int inliers = 0; int flowOutliers= 0; int slopeOutliers= 0; int negativeDisparityOutliers = 0; for(unsigned int i=0; i 0.0f) { cv::Point3f tmpPt = util3d::projectDisparityTo3D( leftCorners[i], disparity, data->stereoCameraModel()); if(util3d::isFinite(tmpPt)) { pt = util3d::transformPoint(tmpPt, data->stereoCameraModel().left().localTransform()); status[i] = 100; //blue ++inliers; cloud->at(oi++) = pcl::PointXYZ(pt.x, pt.y, pt.z); } } else { status[i] = 102; //magenta ++negativeDisparityOutliers; } } else { ++flowOutliers; } } cloud->resize(oi); UINFO("correspondences = %d/%d (%f) (time kpt=%fs stereo=%fs)", (int)cloud->size(), (int)leftCorners.size(), float(cloud->size())/float(leftCorners.size()), timeKpt, timeStereo); stereoViewer_->updateCameraTargetPosition(Transform::getIdentity()); stereoViewer_->addCloud("stereo", cloud); stereoViewer_->update(); ui_->label_stereo_inliers->setNum(inliers); ui_->label_stereo_flowOutliers->setNum(flowOutliers); ui_->label_stereo_slopeOutliers->setNum(slopeOutliers); ui_->label_stereo_disparityOutliers->setNum(negativeDisparityOutliers); std::vector rightKpts; cv::KeyPoint::convert(rightCorners, rightKpts); std::vector good_matches(kpts.size()); for(unsigned int i=0; igetDepthRaw(), rightKpts, // good_matches, imageMatches, cv::Scalar::all(-1), cv::Scalar::all(-1), // std::vector(), cv::DrawMatchesFlags::NOT_DRAW_SINGLE_POINTS ); //ui_->graphicsView_stereo->setImage(uCvMat2QImage(imageMatches)); ui_->graphicsView_stereo->clear(); ui_->graphicsView_stereo->setLinesShown(true); ui_->graphicsView_stereo->setFeaturesShown(false); ui_->graphicsView_stereo->setImageDepthShown(true); ui_->graphicsView_stereo->setImage(uCvMat2QImage(data->imageRaw())); ui_->graphicsView_stereo->setImageDepth(data->depthOrRightRaw()); // Draw lines between corresponding features... for(unsigned int i=0; i 0 && rightKpts[i].pt.y > 0) { QColor c = Qt::green; if(status[i] == 0) { c = Qt::red; } else if(status[i] == 100) { c = Qt::blue; } else if(status[i] == 101) { c = Qt::yellow; } else if(status[i] == 102) { c = Qt::magenta; } else if(status[i] == 110) { c = Qt::cyan; } ui_->graphicsView_stereo->addLine( kpts[i].pt.x, kpts[i].pt.y, rightKpts[i].pt.x, rightKpts[i].pt.y, c, QString("%1: (%2,%3) -> (%4,%5) d=%6").arg(i).arg(kpts[i].pt.x).arg(kpts[i].pt.y).arg(rightKpts[i].pt.x).arg(rightKpts[i].pt.y).arg(kpts[i].pt.x - rightKpts[i].pt.x)); } } ui_->graphicsView_stereo->update(); } } void DatabaseViewer::updateWordsMatching(const std::vector & inliers) { int from = ids_.at(ui_->horizontalSlider_A->value()); int to = ids_.at(ui_->horizontalSlider_B->value()); if(from && to) { ui_->graphicsView_A->clearLines(); ui_->graphicsView_A->setFeaturesColor(ui_->graphicsView_A->getDefaultFeatureColor()); ui_->graphicsView_B->clearLines(); ui_->graphicsView_B->setFeaturesColor(ui_->graphicsView_B->getDefaultFeatureColor()); const QMultiMap & wordsA = ui_->graphicsView_A->getFeatures(); const QMultiMap & wordsB = ui_->graphicsView_B->getFeatures(); std::set inliersSet(inliers.begin(), inliers.end()); if(wordsA.size() && wordsB.size()) { QList ids = wordsA.uniqueKeys(); for(int i=0; i 0 && wordsA.count(ids[i]) == 1 && wordsB.count(ids[i]) == 1) { // Add lines // Draw lines between corresponding features... float scaleAX = ui_->graphicsView_A->viewScale(); float scaleBX = ui_->graphicsView_B->viewScale(); float scaleDiff = ui_->graphicsView_A->viewScale() / ui_->graphicsView_B->viewScale(); float deltaAX = 0; float deltaAY = 0; if(ui_->actionVertical_Layout->isChecked()) { deltaAY = ui_->graphicsView_A->height()/scaleAX; } else { deltaAX = ui_->graphicsView_A->width()/scaleAX; } float deltaBX = 0; float deltaBY = 0; if(ui_->actionVertical_Layout->isChecked()) { deltaBY = ui_->graphicsView_B->height()/scaleBX; } else { deltaBX = ui_->graphicsView_A->width()/scaleBX; } const KeypointItem * kptA = wordsA.value(ids[i]); const KeypointItem * kptB = wordsB.value(ids[i]); QColor cA = ui_->graphicsView_A->getDefaultMatchingLineColor(); QColor cB = ui_->graphicsView_B->getDefaultMatchingLineColor(); if(inliersSet.find(ids[i])!=inliersSet.end()) { cA = ui_->graphicsView_A->getDefaultMatchingFeatureColor(); cB = ui_->graphicsView_B->getDefaultMatchingFeatureColor(); ui_->graphicsView_A->setFeatureColor(ids[i], ui_->graphicsView_A->getDefaultMatchingFeatureColor()); ui_->graphicsView_B->setFeatureColor(ids[i], ui_->graphicsView_B->getDefaultMatchingFeatureColor()); } else { ui_->graphicsView_A->setFeatureColor(ids[i], ui_->graphicsView_A->getDefaultMatchingLineColor()); ui_->graphicsView_B->setFeatureColor(ids[i], ui_->graphicsView_B->getDefaultMatchingLineColor()); } ui_->graphicsView_A->addLine( kptA->rect().x()+kptA->rect().width()/2, kptA->rect().y()+kptA->rect().height()/2, kptB->rect().x()/scaleDiff+kptB->rect().width()/scaleDiff/2+deltaAX, kptB->rect().y()/scaleDiff+kptB->rect().height()/scaleDiff/2+deltaAY, cA); ui_->graphicsView_B->addLine( kptA->rect().x()*scaleDiff+kptA->rect().width()*scaleDiff/2-deltaBX, kptA->rect().y()*scaleDiff+kptA->rect().height()*scaleDiff/2-deltaBY, kptB->rect().x()+kptB->rect().width()/2, kptB->rect().y()+kptB->rect().height()/2, cB); } } ui_->graphicsView_A->update(); ui_->graphicsView_B->update(); } } } void DatabaseViewer::sliderAMoved(int value) { ui_->label_indexA->setText(QString::number(value)); if(value>=0 && value < ids_.size()) { ui_->label_idA->setText(QString::number(ids_.at(value))); } else { ULOGGER_ERROR("Slider index out of range ?"); } } void DatabaseViewer::sliderBMoved(int value) { ui_->label_indexB->setText(QString::number(value)); if(value>=0 && value < ids_.size()) { ui_->label_idB->setText(QString::number(ids_.at(value))); } else { ULOGGER_ERROR("Slider index out of range ?"); } } void DatabaseViewer::update3dView() { if(ui_->dockWidget_view3d->isVisible()) { if(lastSliderIndexBrowsed_ == ui_->horizontalSlider_B->value()) { sliderBValueChanged(ui_->horizontalSlider_B->value()); } else { sliderAValueChanged(ui_->horizontalSlider_A->value()); } } } void DatabaseViewer::sliderNeighborValueChanged(int value) { if(value < neighborLinks_.size()) { this->updateConstraintView(neighborLinks_.at(value)); } } void DatabaseViewer::sliderLoopValueChanged(int value) { if(value < loopLinks_.size()) { this->updateConstraintView(loopLinks_.at(value)); } } void DatabaseViewer::editConstraint() { if(ids_.size()) { Link link = this->findActiveLink(ids_.at(ui_->horizontalSlider_A->value()), ids_.at(ui_->horizontalSlider_B->value())); if(link.isValid()) { EditConstraintDialog dialog(link.transform()); if(dialog.exec() == QDialog::Accepted) { bool updated = false; Link newLink = link; newLink.setTransform(dialog.getTransform()); std::multimap::iterator iter = linksRefined_.find(link.from()); while(iter != linksRefined_.end() && iter->first == link.from()) { if(iter->second.to() == link.to() && iter->second.type() == link.type()) { iter->second = newLink; updated = true; break; } ++iter; } if(!updated) { linksRefined_.insert(std::make_pair(newLink.from(), newLink)); updated = true; } if(updated) { updateConstraintView(); } } } } } // only called when ui_->checkBox_showOptimized state changed void DatabaseViewer::updateConstraintView() { if(ids_.size()) { Link link = this->findActiveLink(ids_.at(ui_->horizontalSlider_A->value()), ids_.at(ui_->horizontalSlider_B->value())); if(link.isValid()) { UDEBUG("link %d->%d type=%d", link.from(), link.to(), link.type()); if((link.type() == Link::kNeighbor || link.type() == Link::kNeighborMerged) && ui_->horizontalSlider_neighbors->value() >= 0 && ui_->horizontalSlider_neighbors->value() < neighborLinks_.size()) { this->updateConstraintView(neighborLinks_.at(ui_->horizontalSlider_neighbors->value()), false); } else if((link.type() != Link::kPosePrior || link.type() != Link::kGravity) && ui_->horizontalSlider_loops->value() >= 0 && ui_->horizontalSlider_loops->value() < loopLinks_.size()) { this->updateConstraintView(loopLinks_.at(ui_->horizontalSlider_loops->value()), false); } else { this->updateConstraintView(link, false); } } } } void DatabaseViewer::updateConstraintView( const rtabmap::Link & linkIn, bool updateImageSliders, const Signature & signatureFrom, const Signature & signatureTo) { UDEBUG("%d -> %d", linkIn.from(), linkIn.to()); std::multimap::iterator iterLink = rtabmap::graph::findLink(linksRefined_, linkIn.from(), linkIn.to()); rtabmap::Link link = linkIn; if(iterLink != linksRefined_.end()) { if(iterLink->second.from() == link.to()) { link = iterLink->second.inverse(); } else { link = iterLink->second; } } else if(ui_->checkBox_ignorePoseCorrection->isChecked()) { if(link.type() == Link::kNeighbor || link.type() == Link::kNeighborMerged) { Transform poseFrom = uValue(odomPoses_, link.from(), Transform()); Transform poseTo = uValue(odomPoses_, link.to(), Transform()); if(!poseFrom.isNull() && !poseTo.isNull()) { // recompute raw odom transformation and // reset to identity covariance link = Link(link.from(), link.to(), link.type(), poseFrom.inverse() * poseTo); } } } UDEBUG("%d -> %d", link.from(), link.to()); rtabmap::Transform t = link.transform(); if(link.type() == Link::kGravity) { // remove yaw, keep only roll and pitch float roll, pitch, yaw; t.getEulerAngles(roll, pitch, yaw); t = Transform(0,0,0,roll,pitch,0); } ui_->label_constraint->clear(); ui_->label_constraint_opt->clear(); ui_->checkBox_showOptimized->setEnabled(false); UASSERT(!t.isNull() && dbDriver_); ui_->label_type->setText(QString::number(link.type())); ui_->label_type_name->setText(tr("(%1)") .arg(link.type()==Link::kNeighbor?"Neighbor": link.type()==Link::kNeighborMerged?"Merged neighbor": link.type()==Link::kGlobalClosure?"Loop closure": link.type()==Link::kLocalSpaceClosure?"Space proximity link": link.type()==Link::kLocalTimeClosure?"Time proximity link": link.type()==Link::kUserClosure?"User link": link.type()==Link::kLandmark?"Landmark link": link.type()==Link::kVirtualClosure?"Virtual link": link.type()==Link::kGravity?"Gravity link":"Undefined")); ui_->label_variance->setText(QString("%1, %2") .arg(sqrt(link.transVariance())) .arg(sqrt(link.rotVariance()))); std::stringstream out; out << link.infMatrix().inv(); ui_->lineEdit_covariance->setText(out.str().c_str()); ui_->label_constraint->setText(QString("%1").arg(t.prettyPrint().c_str()).replace(" ", "\n")); if(graphes_.size() && (int)graphes_.size()-1 == ui_->horizontalSlider_iterations->maximum()) { std::map & graph = uValueAt(graphes_, ui_->horizontalSlider_iterations->value()); std::map::iterator iterFrom = graph.find(link.from()); std::map::iterator iterTo = graph.find(link.to()); if(iterFrom != graph.end() && iterTo != graph.end()) { ui_->checkBox_showOptimized->setEnabled(true); Transform topt = iterFrom->second.inverse()*iterTo->second; float diff = topt.getDistance(t); Transform v1 = t.rotation()*Transform(1,0,0,0,0,0); Transform v2 = topt.rotation()*Transform(1,0,0,0,0,0); float a = pcl::getAngle3D(Eigen::Vector4f(v1.x(), v1.y(), v1.z(), 0), Eigen::Vector4f(v2.x(), v2.y(), v2.z(), 0)); a = (a *180.0f) / CV_PI; ui_->label_constraint_opt->setText(QString("%1\n(error=%2% a=%3)").arg(QString(topt.prettyPrint().c_str()).replace(" ", "\n")).arg((diff/t.getNorm())*100.0f).arg(a)); if(ui_->checkBox_showOptimized->isChecked()) { t = topt; } } } if(updateImageSliders) { ui_->horizontalSlider_A->blockSignals(true); ui_->horizontalSlider_B->blockSignals(true); // set from on left and to on right if(link.from()>0) ui_->horizontalSlider_A->setValue(idToIndex_.value(link.from())); if(link.to() > 0) ui_->horizontalSlider_B->setValue(idToIndex_.value(link.to())); ui_->horizontalSlider_A->blockSignals(false); ui_->horizontalSlider_B->blockSignals(false); if(link.from()>0) this->update(idToIndex_.value(link.from()), ui_->label_indexA, ui_->label_parentsA, ui_->label_childrenA, ui_->label_weightA, ui_->label_labelA, ui_->label_stampA, ui_->graphicsView_A, ui_->label_idA, ui_->label_mapA, ui_->label_poseA, ui_->label_velA, ui_->label_calibA, ui_->label_scanA, ui_->label_gravityA, ui_->label_gpsA, ui_->label_sensorsA, false); // don't update constraints view! if(link.to()>0) { this->update(idToIndex_.value(link.to()), ui_->label_indexB, ui_->label_parentsB, ui_->label_childrenB, ui_->label_weightB, ui_->label_labelB, ui_->label_stampB, ui_->graphicsView_B, ui_->label_idB, ui_->label_mapB, ui_->label_poseB, ui_->label_velB, ui_->label_calibB, ui_->label_scanB, ui_->label_gravityB, ui_->label_gpsB, ui_->label_sensorsB, false); // don't update constraints view! } } if(constraintsViewer_->isVisible()) { SensorData dataFrom, dataTo; if(signatureFrom.id()>0) { dataFrom = signatureFrom.sensorData(); } else { dbDriver_->getNodeData(link.from(), dataFrom); } dataFrom.uncompressData(); UASSERT(dataFrom.imageRaw().empty() || dataFrom.imageRaw().type()==CV_8UC3 || dataFrom.imageRaw().type() == CV_8UC1); UASSERT(dataFrom.depthOrRightRaw().empty() || dataFrom.depthOrRightRaw().type()==CV_8UC1 || dataFrom.depthOrRightRaw().type() == CV_16UC1 || dataFrom.depthOrRightRaw().type() == CV_32FC1); if(signatureTo.id()>0) { dataTo = signatureTo.sensorData(); } else { dbDriver_->getNodeData(link.to(), dataTo); } dataTo.uncompressData(); UASSERT(dataTo.imageRaw().empty() || dataTo.imageRaw().type()==CV_8UC3 || dataTo.imageRaw().type() == CV_8UC1); UASSERT(dataTo.depthOrRightRaw().empty() || dataTo.depthOrRightRaw().type()==CV_8UC1 || dataTo.depthOrRightRaw().type() == CV_16UC1 || dataTo.depthOrRightRaw().type() == CV_32FC1); // get odom pose Transform pose = Transform::getIdentity(); if(ui_->checkBox_odomFrame->isChecked()) { int m,w; std::string l; double s; Transform p,g; std::vector v; GPS gps; EnvSensors sensors; dbDriver_->getNodeInfo(link.from(), p, m, w, l, s, g, v, gps, sensors); if(!p.isNull()) { // keep just the z and roll/pitch rotation float x, y, z, roll, pitch, yaw; p.getTranslationAndEulerAngles(x, y, z, roll, pitch, yaw); pose = Transform(0,0,z,roll,pitch,0); } } constraintsViewer_->removeCloud("cloud0"); constraintsViewer_->removeCloud("cloud1"); //cloud 3d if(ui_->checkBox_show3Dclouds->isChecked()) { pcl::PointCloud::Ptr cloudFrom, cloudTo; pcl::IndicesPtr indicesFrom(new std::vector); pcl::IndicesPtr indicesTo(new std::vector); if(!dataFrom.imageRaw().empty() && !dataFrom.depthOrRightRaw().empty()) { cloudFrom=util3d::cloudRGBFromSensorData(dataFrom, ui_->spinBox_decimation->value(), 0, 0, indicesFrom.get(), ui_->parameters_toolbox->getParameters()); } if(!dataTo.imageRaw().empty() && !dataTo.depthOrRightRaw().empty()) { cloudTo=util3d::cloudRGBFromSensorData(dataTo, ui_->spinBox_decimation->value(), 0, 0, indicesTo.get(), ui_->parameters_toolbox->getParameters()); } if(cloudTo.get() && indicesTo->size()) { cloudTo = rtabmap::util3d::transformPointCloud(cloudTo, t); } // Gain compensation if(ui_->doubleSpinBox_gainCompensationRadius->value()>0.0 && cloudFrom.get() && indicesFrom->size() && cloudTo.get() && indicesTo->size()) { UTimer t; GainCompensator compensator(ui_->doubleSpinBox_gainCompensationRadius->value()); compensator.feed(cloudFrom, indicesFrom, cloudTo, indicesTo, Transform::getIdentity()); compensator.apply(0, cloudFrom, indicesFrom); compensator.apply(1, cloudTo, indicesTo); UINFO("Gain compensation time = %fs", t.ticks()); } if(cloudFrom.get() && indicesFrom->size()) { if(ui_->doubleSpinBox_voxelSize->value() > 0.0) { cloudFrom = util3d::voxelize(cloudFrom, indicesFrom, ui_->doubleSpinBox_voxelSize->value()); } constraintsViewer_->addCloud("cloud0", cloudFrom, pose, Qt::red); } if(cloudTo.get() && indicesTo->size()) { if(ui_->doubleSpinBox_voxelSize->value() > 0.0) { cloudTo = util3d::voxelize(cloudTo, indicesTo, ui_->doubleSpinBox_voxelSize->value()); } constraintsViewer_->addCloud("cloud1", cloudTo, pose, Qt::cyan); } } constraintsViewer_->removeCloud("words0"); constraintsViewer_->removeCloud("words1"); if(ui_->checkBox_show3DWords->isChecked()) { std::list ids; ids.push_back(link.from()); ids.push_back(link.to()); std::list signatures; dbDriver_->loadSignatures(ids, signatures); if(signatures.size() == 2) { const Signature * sFrom = signatureFrom.id()>0?&signatureFrom:signatures.front(); const Signature * sTo = signatureTo.id()>0?&signatureTo:signatures.back(); UASSERT(sFrom && sTo); pcl::PointCloud::Ptr cloudFrom(new pcl::PointCloud); pcl::PointCloud::Ptr cloudTo(new pcl::PointCloud); cloudFrom->resize(sFrom->getWords3().size()); cloudTo->resize(sTo->getWords3().size()); int i=0; for(std::multimap::const_iterator iter=sFrom->getWords3().begin(); iter!=sFrom->getWords3().end(); ++iter) { cloudFrom->at(i++) = pcl::PointXYZ(iter->second.x, iter->second.y, iter->second.z); } i=0; for(std::multimap::const_iterator iter=sTo->getWords3().begin(); iter!=sTo->getWords3().end(); ++iter) { cloudTo->at(i++) = pcl::PointXYZ(iter->second.x, iter->second.y, iter->second.z); } if(cloudFrom->size()) { cloudFrom = rtabmap::util3d::removeNaNFromPointCloud(cloudFrom); } if(cloudTo->size()) { cloudTo = rtabmap::util3d::removeNaNFromPointCloud(cloudTo); if(cloudTo->size()) { cloudTo = rtabmap::util3d::transformPointCloud(cloudTo, t); } } if(cloudFrom->size()) { constraintsViewer_->addCloud("words0", cloudFrom, pose, Qt::red); } else { UWARN("Empty 3D words for node %d", link.from()); constraintsViewer_->removeCloud("words0"); } if(cloudTo->size()) { constraintsViewer_->addCloud("words1", cloudTo, pose, Qt::cyan); } else { UWARN("Empty 3D words for node %d", link.to()); constraintsViewer_->removeCloud("words1"); } } else { UERROR("Not found signature %d or %d in RAM", link.from(), link.to()); constraintsViewer_->removeCloud("words0"); constraintsViewer_->removeCloud("words1"); } //cleanup for(std::list::iterator iter=signatures.begin(); iter!=signatures.end(); ++iter) { delete *iter; } } constraintsViewer_->removeCloud("scan2"); constraintsViewer_->removeCloud("scan2normals"); constraintsViewer_->removeGraph("scan2graph"); constraintsViewer_->removeCloud("scan0"); constraintsViewer_->removeCloud("scan1"); if(ui_->checkBox_show2DScans->isChecked()) { //cloud 2d if(link.type() == Link::kLocalSpaceClosure && !link.userDataCompressed().empty()) { std::vector ids; cv::Mat userData = link.uncompressUserDataConst(); if(userData.type() == CV_8SC1 && userData.rows == 1 && userData.cols >= 8 && // including null str ending userData.at(userData.cols-1) == 0 && memcmp(userData.data, "SCANS:", 6) == 0) { std::string scansStr = (const char *)userData.data; UINFO("Detected \"%s\" in links's user data", scansStr.c_str()); if(!scansStr.empty()) { std::list strs = uSplit(scansStr, ':'); if(strs.size() == 2) { std::list strIds = uSplit(strs.rbegin()->c_str(), ';'); for(std::list::iterator iter=strIds.begin(); iter!=strIds.end(); ++iter) { ids.push_back(atoi(iter->c_str())); if(ids.back() == link.from()) { ids.pop_back(); } } } } } if(ids.size()) { //add other scans matching //optimize the path's poses locally std::map poses; for(unsigned int i=0; iparameters_toolbox->getParameters()); UASSERT(uContains(poses, link.to())); std::map posesOut; std::multimap linksOut; optimizer->getConnectedGraph( link.to(), poses, updateLinksWithModifications(links_), posesOut, linksOut); if(poses.size() != posesOut.size()) { UWARN("Scan poses input and output are different! %d vs %d", (int)poses.size(), (int)posesOut.size()); UWARN("Input poses: "); for(std::map::iterator iter=poses.begin(); iter!=poses.end(); ++iter) { UWARN(" %d", iter->first); } UWARN("Input links: "); std::multimap modifiedLinks = updateLinksWithModifications(links_); for(std::multimap::iterator iter=modifiedLinks.begin(); iter!=modifiedLinks.end(); ++iter) { UWARN(" %d->%d", iter->second.from(), iter->second.to()); } } QTime time; time.start(); std::map finalPoses = optimizer->optimize(link.to(), posesOut, linksOut); delete optimizer; // transform local poses in loop referential Transform u = t * finalPoses.at(link.to()).inverse(); pcl::PointCloud::Ptr assembledScans(new pcl::PointCloud); pcl::PointCloud::Ptr assembledNormalScans(new pcl::PointCloud); pcl::PointCloud::Ptr graph(new pcl::PointCloud); for(std::map::iterator iter=finalPoses.begin(); iter!=finalPoses.end(); ++iter) { iter->second = u * iter->second; if(iter->first != link.to()) // already added to view { //create scan SensorData data; dbDriver_->getNodeData(iter->first, data); LaserScan scan; data.uncompressDataConst(0, 0, &scan, 0); if(!scan.isEmpty()) { if(scan.hasNormals()) { *assembledNormalScans += *util3d::laserScanToPointCloudNormal(scan, iter->second*scan.localTransform()); } else { *assembledScans += *util3d::laserScanToPointCloud(scan, iter->second*scan.localTransform()); } } } graph->push_back(pcl::PointXYZ(iter->second.x(), iter->second.y(), iter->second.z())); } if(assembledNormalScans->size()) { constraintsViewer_->addCloud("scan2normals", assembledNormalScans, pose, Qt::cyan); constraintsViewer_->setCloudColorIndex("scan2normals", 2); } if(assembledScans->size()) { constraintsViewer_->addCloud("scan2", assembledScans, pose, Qt::cyan); constraintsViewer_->setCloudColorIndex("scan2", 2); } if(graph->size()) { constraintsViewer_->addOrUpdateGraph("scan2graph", graph, Qt::cyan); } } } } // Added loop closure scans constraintsViewer_->removeCloud("scan0"); constraintsViewer_->removeCloud("scan1"); if(!dataFrom.laserScanRaw().isEmpty()) { if(dataFrom.laserScanRaw().hasNormals()) { pcl::PointCloud::Ptr scan; scan = rtabmap::util3d::laserScanToPointCloudNormal(dataFrom.laserScanRaw(), dataFrom.laserScanRaw().localTransform()); constraintsViewer_->addCloud("scan0", scan, pose, Qt::yellow); constraintsViewer_->setCloudColorIndex("scan0", 2); } else { pcl::PointCloud::Ptr scan; scan = rtabmap::util3d::laserScanToPointCloud(dataFrom.laserScanRaw(), dataFrom.laserScanRaw().localTransform()); constraintsViewer_->addCloud("scan0", scan, pose, Qt::yellow); constraintsViewer_->setCloudColorIndex("scan0", 2); } } if(!dataTo.laserScanRaw().isEmpty()) { if(dataTo.laserScanRaw().hasNormals()) { pcl::PointCloud::Ptr scan; scan = rtabmap::util3d::laserScanToPointCloudNormal(dataTo.laserScanRaw(), t*dataTo.laserScanRaw().localTransform()); constraintsViewer_->addCloud("scan1", scan, pose, Qt::magenta); constraintsViewer_->setCloudColorIndex("scan1", 2); } else { pcl::PointCloud::Ptr scan; scan = rtabmap::util3d::laserScanToPointCloud(dataTo.laserScanRaw(), t*dataTo.laserScanRaw().localTransform()); constraintsViewer_->addCloud("scan1", scan, pose, Qt::magenta); constraintsViewer_->setCloudColorIndex("scan1", 2); } } } //update coordinate constraintsViewer_->addOrUpdateCoordinate("from_coordinate", pose, 0.2); #if PCL_VERSION_COMPARE(>=, 1, 7, 2) constraintsViewer_->addOrUpdateCoordinate("to_coordinate", pose*t, 0.2); constraintsViewer_->removeCoordinate("to_coordinate_gt"); if(uContains(groundTruthPoses_, link.from()) && uContains(groundTruthPoses_, link.to())) { constraintsViewer_->addOrUpdateCoordinate("to_coordinate_gt", pose*(groundTruthPoses_.at(link.from()).inverse()*groundTruthPoses_.at(link.to())), 0.1); } #endif constraintsViewer_->clearTrajectory(); constraintsViewer_->update(); } // update buttons updateConstraintButtons(); } void DatabaseViewer::updateConstraintButtons() { ui_->pushButton_refine->setEnabled(false); ui_->pushButton_reset->setEnabled(false); ui_->pushButton_add->setEnabled(false); ui_->pushButton_reject->setEnabled(false); ui_->toolButton_constraint->setEnabled(false); if(ui_->label_type->text().toInt() == Link::kLandmark) { return; } int from = ids_.at(ui_->horizontalSlider_A->value()); int to = ids_.at(ui_->horizontalSlider_B->value()); if(from!=to && from && to && odomPoses_.find(from) != odomPoses_.end() && odomPoses_.find(to) != odomPoses_.end()) { if((!containsLink(links_, from ,to) && !containsLink(linksAdded_, from ,to)) || containsLink(linksRemoved_, from ,to)) { ui_->pushButton_add->setEnabled(true); } } Link currentLink = findActiveLink(from ,to); if(currentLink.isValid() && ((currentLink.from() == from && currentLink.to() == to) || (currentLink.from() == to && currentLink.to() == from))) { if(!containsLink(linksRemoved_, from ,to)) { ui_->pushButton_reject->setEnabled(true); } //check for modified link bool modified = false; std::multimap::iterator iter = rtabmap::graph::findLink(linksRefined_, currentLink.from(), currentLink.to()); if(iter != linksRefined_.end()) { currentLink = iter->second; ui_->pushButton_reset->setEnabled(true); modified = true; } if(!modified) { ui_->pushButton_reset->setEnabled(false); } ui_->pushButton_refine->setEnabled(currentLink.from()!=currentLink.to()); ui_->toolButton_constraint->setEnabled(true); } } void DatabaseViewer::sliderIterationsValueChanged(int value) { if(dbDriver_ && value >=0 && value < (int)graphes_.size()) { std::map graph = uValueAt(graphes_, value); std::map refPoses = groundTruthPoses_; if(refPoses.empty()) { refPoses = gpsPoses_; } // Log ground truth statistics (in TUM's RGBD-SLAM format) if(refPoses.size()) { // compute KITTI statistics before aligning the poses float length = graph::computePathLength(graph); if(refPoses.size() == graph.size() && length >= 100.0f) { float t_err = 0.0f; float r_err = 0.0f; graph::calcKittiSequenceErrors(uValues(refPoses), uValues(graph), t_err, r_err); UINFO("KITTI t_err = %f %%", t_err); UINFO("KITTI r_err = %f deg/m", r_err); } float translational_rmse = 0.0f; float translational_mean = 0.0f; float translational_median = 0.0f; float translational_std = 0.0f; float translational_min = 0.0f; float translational_max = 0.0f; float rotational_rmse = 0.0f; float rotational_mean = 0.0f; float rotational_median = 0.0f; float rotational_std = 0.0f; float rotational_min = 0.0f; float rotational_max = 0.0f; Transform gtToMap = graph::calcRMSE( refPoses, graph, translational_rmse, translational_mean, translational_median, translational_std, translational_min, translational_max, rotational_rmse, rotational_mean, rotational_median, rotational_std, rotational_min, rotational_max); // ground truth live statistics ui_->label_rmse->setNum(translational_rmse); UINFO("translational_rmse=%f", translational_rmse); UINFO("translational_mean=%f", translational_mean); UINFO("translational_median=%f", translational_median); UINFO("translational_std=%f", translational_std); UINFO("translational_min=%f", translational_min); UINFO("translational_max=%f", translational_max); UINFO("rotational_rmse=%f", rotational_rmse); UINFO("rotational_mean=%f", rotational_mean); UINFO("rotational_median=%f", rotational_median); UINFO("rotational_std=%f", rotational_std); UINFO("rotational_min=%f", rotational_min); UINFO("rotational_max=%f", rotational_max); if(ui_->checkBox_alignPosesWithGroundTruth->isChecked() && !gtToMap.isIdentity()) { for(std::map::iterator iter=graph.begin(); iter!=graph.end(); ++iter) { iter->second = gtToMap * iter->second; } } } std::map graphFiltered; if(ui_->checkBox_alignScansCloudsWithGroundTruth->isChecked() && !groundTruthPoses_.empty()) { graphFiltered = groundTruthPoses_; } else { graphFiltered = graph; } if(ui_->groupBox_posefiltering->isChecked()) { graphFiltered = graph::radiusPosesFiltering(graph, ui_->doubleSpinBox_posefilteringRadius->value(), ui_->doubleSpinBox_posefilteringAngle->value()*CV_PI/180.0); } std::map, cv::Mat> > localMaps; std::map > localMapsInfo; #ifdef RTABMAP_OCTOMAP if(octomap_) { delete octomap_; octomap_ = 0; } #endif if(ui_->dockWidget_graphView->isVisible() || ui_->dockWidget_occupancyGridView->isVisible()) { //update scans UINFO("Update local maps list..."); std::vector ids = uKeys(graphFiltered); for(unsigned int i=0; isecond.first.first.empty() || !localMaps_.find(ids[i])->second.first.second.empty()) { localMaps.insert(*localMaps_.find(ids.at(i))); localMapsInfo.insert(*localMapsInfo_.find(ids[i])); } } else { SensorData data; dbDriver_->getNodeData(ids.at(i), data, false, false, false); cv::Mat ground, obstacles, empty; data.uncompressData(0, 0, 0, 0, &ground, &obstacles, &empty); localMaps_.insert(std::make_pair(ids.at(i), std::make_pair(std::make_pair(ground, obstacles), empty))); localMapsInfo_.insert(std::make_pair(ids.at(i), std::make_pair(data.gridCellSize(), data.gridViewPoint()))); if(!ground.empty() || !obstacles.empty()) { localMaps.insert(std::make_pair(ids.at(i), std::make_pair(std::make_pair(ground, obstacles), empty))); localMapsInfo.insert(std::make_pair(ids.at(i), std::make_pair(data.gridCellSize(), data.gridViewPoint()))); } } } //cleanup for(std::map, cv::Mat> >::iterator iter=localMaps_.begin(); iter!=localMaps_.end();) { if(graphFiltered.find(iter->first) == graphFiltered.end()) { localMapsInfo_.erase(iter->first); localMaps_.erase(iter++); } else { ++iter; } } UINFO("Update local maps list... done (%d local maps, graph size=%d)", (int)localMaps.size(), (int)graph.size()); } ParametersMap parameters = ui_->parameters_toolbox->getParameters(); float cellSize = Parameters::defaultGridCellSize(); Parameters::parse(parameters, Parameters::kGridCellSize(), cellSize); ui_->graphViewer->updateGTGraph(groundTruthPoses_); ui_->graphViewer->updateGPSGraph(gpsPoses_, gpsValues_); ui_->graphViewer->updateGraph(graph, graphLinks_, mapIds_, weights_); if(!ui_->checkBox_wmState->isChecked()) { bool allNodesAreInWM = true; std::map colors; for(std::map::iterator iter=graph.begin(); iter!=graph.end(); ++iter) { if(lastWmIds_.find(iter->first) != lastWmIds_.end()) { colors.insert(std::make_pair(iter->first, 1)); } else { allNodesAreInWM = false; } } if(!allNodesAreInWM) { ui_->graphViewer->updatePosterior(colors, 1, 1); } } ui_->graphViewer->clearMap(); occupancyGridViewer_->clear(); if(graph.size() && localMaps.size() && (ui_->graphViewer->isGridMapVisible() || ui_->dockWidget_occupancyGridView->isVisible())) { QTime time; time.start(); #ifdef RTABMAP_OCTOMAP if(ui_->checkBox_octomap->isChecked()) { octomap_ = new OctoMap(parameters); bool updateAborted = false; for(std::map, cv::Mat> >::iterator iter=localMaps.begin(); iter!=localMaps.end(); ++iter) { if(iter->second.first.first.channels() == 2 || iter->second.first.second.channels() == 2) { QMessageBox::warning(this, tr(""), tr("Some local occupancy grids are 2D, but OctoMap requires 3D local " "occupancy grids. Uncheck OctoMap under GUI parameters or generate " "3D local occupancy grids (\"Grid/3D\" core parameter).")); updateAborted = true; break; } octomap_->addToCache(iter->first, iter->second.first.first, iter->second.first.second, iter->second.second, localMapsInfo.at(iter->first).second); } if(!updateAborted) { octomap_->update(graphFiltered); } } #endif // Generate 2d grid map? if((ui_->dockWidget_graphView->isVisible() && ui_->graphViewer->isGridMapVisible()) || (ui_->dockWidget_occupancyGridView->isVisible() && ui_->checkBox_grid_2d->isChecked())) { bool eroded = Parameters::defaultGridGlobalEroded(); Parameters::parse(parameters, Parameters::kGridGlobalEroded(), eroded); float xMin, yMin; cv::Mat map; #ifdef RTABMAP_OCTOMAP if(ui_->checkBox_octomap->isChecked()) { map = octomap_->createProjectionMap(xMin, yMin, cellSize, 0, ui_->spinBox_grid_depth->value()); } else #endif { if(eroded) { uInsert(parameters, ParametersPair(Parameters::kGridGlobalEroded(), "true")); } OccupancyGrid grid(parameters); grid.setCellSize(cellSize); for(std::map, cv::Mat> >::iterator iter=localMaps.begin(); iter!=localMaps.end(); ++iter) { grid.addToCache(iter->first, iter->second.first.first, iter->second.first.second, iter->second.second); } grid.update(graphFiltered); map = grid.getMap(xMin, yMin); } ui_->label_timeGrid->setNum(double(time.elapsed())/1000.0); if(!map.empty()) { cv::Mat map8U = rtabmap::util3d::convertMap2Image8U(map); if(ui_->dockWidget_graphView->isVisible() && ui_->graphViewer->isGridMapVisible()) { ui_->graphViewer->updateMap(map8U, cellSize, xMin, yMin); } if(ui_->dockWidget_occupancyGridView->isVisible() && ui_->checkBox_grid_2d->isChecked()) { occupancyGridViewer_->addOccupancyGridMap(map8U, cellSize, xMin, yMin, 1.0f); occupancyGridViewer_->update(); } } } // Generate 3d grid map? if(ui_->dockWidget_occupancyGridView->isVisible()) { #ifdef RTABMAP_OCTOMAP if(ui_->checkBox_octomap->isChecked()) { updateOctomapView(); } else #endif { pcl::PointCloud::Ptr groundXYZ(new pcl::PointCloud); pcl::PointCloud::Ptr obstaclesXYZ(new pcl::PointCloud); pcl::PointCloud::Ptr emptyCellsXYZ(new pcl::PointCloud); pcl::PointCloud::Ptr groundRGB(new pcl::PointCloud); pcl::PointCloud::Ptr obstaclesRGB(new pcl::PointCloud); pcl::PointCloud::Ptr emptyCellsRGB(new pcl::PointCloud); for(std::map, cv::Mat> >::iterator iter=localMaps.begin(); iter!=localMaps.end(); ++iter) { Transform pose = graphFiltered.at(iter->first); float x,y,z,roll,pitch,yaw; pose.getTranslationAndEulerAngles(x,y,z,roll,pitch,yaw); Transform pose2d(x,y, 0, 0, 0, yaw); if(!iter->second.first.first.empty()) { if(iter->second.first.first.channels() == 4) { *groundRGB += *util3d::laserScanToPointCloudRGB(LaserScan::backwardCompatibility(iter->second.first.first), pose); } else { *groundXYZ += *util3d::laserScanToPointCloud(LaserScan::backwardCompatibility(iter->second.first.first), iter->second.first.first.channels()==2?pose2d:pose); } } if(!iter->second.first.second.empty()) { if(iter->second.first.second.channels() == 4) { *obstaclesRGB += *util3d::laserScanToPointCloudRGB(LaserScan::backwardCompatibility(iter->second.first.second), pose); } else { *obstaclesXYZ += *util3d::laserScanToPointCloud(LaserScan::backwardCompatibility(iter->second.first.second), iter->second.first.second.channels()==2?pose2d:pose); } } if(ui_->checkBox_grid_empty->isChecked()) { if(!iter->second.second.empty()) { if(iter->second.second.channels() == 4) { *emptyCellsRGB += *util3d::laserScanToPointCloudRGB(LaserScan::backwardCompatibility(iter->second.second), pose); } else { *emptyCellsXYZ += *util3d::laserScanToPointCloud(LaserScan::backwardCompatibility(iter->second.second), iter->second.second.channels()==2?pose2d:pose); } } } } // occupancy cloud if(groundRGB->size()) { groundRGB = util3d::voxelize(groundRGB, cellSize); occupancyGridViewer_->addCloud("groundRGB", groundRGB, Transform::getIdentity(), QColor(ui_->lineEdit_groundColor->text())); occupancyGridViewer_->setCloudPointSize("groundRGB", 5); } if(groundXYZ->size()) { groundXYZ = util3d::voxelize(groundXYZ, cellSize); occupancyGridViewer_->addCloud("groundXYZ", groundXYZ, Transform::getIdentity(), QColor(ui_->lineEdit_groundColor->text())); occupancyGridViewer_->setCloudPointSize("groundXYZ", 5); } if(obstaclesRGB->size()) { obstaclesRGB = util3d::voxelize(obstaclesRGB, cellSize); occupancyGridViewer_->addCloud("obstaclesRGB", obstaclesRGB, Transform::getIdentity(), QColor(ui_->lineEdit_obstacleColor->text())); occupancyGridViewer_->setCloudPointSize("obstaclesRGB", 5); } if(obstaclesXYZ->size()) { obstaclesXYZ = util3d::voxelize(obstaclesXYZ, cellSize); occupancyGridViewer_->addCloud("obstaclesXYZ", obstaclesXYZ, Transform::getIdentity(), QColor(ui_->lineEdit_obstacleColor->text())); occupancyGridViewer_->setCloudPointSize("obstaclesXYZ", 5); } if(emptyCellsRGB->size()) { emptyCellsRGB = util3d::voxelize(emptyCellsRGB, cellSize); occupancyGridViewer_->addCloud("emptyCellsRGB", emptyCellsRGB, Transform::getIdentity(), QColor(ui_->lineEdit_emptyColor->text())); occupancyGridViewer_->setCloudPointSize("emptyCellsRGB", 5); occupancyGridViewer_->setCloudOpacity("emptyCellsRGB", 0.5); } if(emptyCellsXYZ->size()) { emptyCellsXYZ = util3d::voxelize(emptyCellsXYZ, cellSize); occupancyGridViewer_->addCloud("emptyCellsXYZ", emptyCellsXYZ, Transform::getIdentity(), QColor(ui_->lineEdit_emptyColor->text())); occupancyGridViewer_->setCloudPointSize("emptyCellsXYZ", 5); occupancyGridViewer_->setCloudOpacity("emptyCellsXYZ", 0.5); } occupancyGridViewer_->update(); } } } ui_->graphViewer->fitInView(ui_->graphViewer->scene()->itemsBoundingRect(), Qt::KeepAspectRatio); ui_->graphViewer->update(); ui_->label_iterations->setNum(value); //compute total length (neighbor links) float length = 0.0f; for(std::multimap::const_iterator iter=graphLinks_.begin(); iter!=graphLinks_.end(); ++iter) { std::map::const_iterator jterA = graph.find(iter->first); std::map::const_iterator jterB = graph.find(iter->second.to()); if(jterA != graph.end() && jterB != graph.end()) { const rtabmap::Transform & poseA = jterA->second; const rtabmap::Transform & poseB = jterB->second; if(iter->second.type() == rtabmap::Link::kNeighbor || iter->second.type() == rtabmap::Link::kNeighborMerged) { Eigen::Vector3f vA, vB; float x,y,z; poseA.getTranslation(x,y,z); vA[0] = x; vA[1] = y; vA[2] = z; poseB.getTranslation(x,y,z); vB[0] = x; vB[1] = y; vB[2] = z; length += (vB - vA).norm(); } } } ui_->label_pathLength->setNum(length); } } void DatabaseViewer::updateGraphView() { ui_->label_loopClosures->clear(); ui_->label_poses->clear(); ui_->label_rmse->clear(); if(odomPoses_.size()) { int fromId = ui_->spinBox_optimizationsFrom->value(); if(!uContains(odomPoses_, fromId)) { QMessageBox::warning(this, tr(""), tr("Graph optimization from id (%1) for which node is not linked to graph.\n Minimum=%2, Maximum=%3") .arg(fromId) .arg(odomPoses_.begin()->first) .arg(odomPoses_.rbegin()->first)); return; } graphes_.clear(); graphLinks_.clear(); std::map poses = odomPoses_; if(ui_->checkBox_wmState->isChecked() && uContains(wmStates_, fromId)) { std::map wmPoses; std::vector & wmState = wmStates_.at(fromId); for(unsigned int i=0; i::iterator iter = poses.find(wmState[i]); if(iter!=poses.end()) { wmPoses.insert(*iter); } } if(!wmPoses.empty()) { poses = wmPoses; } else { UWARN("Empty WM poses!? Ignoring WM state... (root id=%d, wmState=%d)", fromId, wmState.size()); } } // filter current map if not spanning to all maps if(!ui_->checkBox_spanAllMaps->isChecked() && uContains(mapIds_, fromId) && mapIds_.at(fromId) >= 0) { int currentMapId = mapIds_.at(fromId); for(std::map::iterator iter=poses.begin(); iter!=poses.end();) { if(iter->first>0 && (!uContains(mapIds_, iter->first) || mapIds_.at(iter->first) != currentMapId)) { poses.erase(iter++); } else { ++iter; } } } ui_->menuExport_poses->setEnabled(true); std::multimap links = links_; loopLinks_.clear(); // filter current map if not spanning to all maps if(!ui_->checkBox_spanAllMaps->isChecked() && uContains(mapIds_, fromId) && mapIds_.at(fromId) >= 0) { int currentMapId = mapIds_.at(fromId); for(std::multimap::iterator iter=links.begin(); iter!=links.end();) { if((iter->second.from()>0 && (!uContains(mapIds_, iter->second.from()) || mapIds_.at(iter->second.from()) != currentMapId)) || (iter->second.to()>0 && (!uContains(mapIds_, iter->second.to()) || mapIds_.at(iter->second.to()) != currentMapId))) { links.erase(iter++); } else { ++iter; } } } links = updateLinksWithModifications(links); if(ui_->checkBox_ignorePoseCorrection->isChecked()) { for(std::multimap::iterator iter=links.begin(); iter!=links.end(); ++iter) { if(iter->second.type() == Link::kNeighbor || iter->second.type() == Link::kNeighborMerged) { Transform poseFrom = uValue(poses, iter->second.from(), Transform()); Transform poseTo = uValue(poses, iter->second.to(), Transform()); if(!poseFrom.isNull() && !poseTo.isNull()) { // reset to identity covariance iter->second = Link( iter->second.from(), iter->second.to(), iter->second.type(), poseFrom.inverse() * poseTo); } } } } // filter links int totalNeighbor = 0; int totalNeighborMerged = 0; int totalGlobal = 0; int totalLocalTime = 0; int totalLocalSpace = 0; int totalUser = 0; int totalPriors = 0; int totalLandmarks = 0; int totalGravity = 0; for(std::multimap::iterator iter=links.begin(); iter!=links.end();) { if(iter->second.type() == Link::kNeighbor) { ++totalNeighbor; } else if(iter->second.type() == Link::kNeighborMerged) { ++totalNeighborMerged; } else if(iter->second.type() == Link::kGlobalClosure) { if(ui_->checkBox_ignoreGlobalLoop->isChecked()) { links.erase(iter++); continue; } loopLinks_.push_back(iter->second); ++totalGlobal; } else if(iter->second.type() == Link::kLocalSpaceClosure) { if(ui_->checkBox_ignoreLocalLoopSpace->isChecked()) { links.erase(iter++); continue; } loopLinks_.push_back(iter->second); ++totalLocalSpace; } else if(iter->second.type() == Link::kLocalTimeClosure) { if(ui_->checkBox_ignoreLocalLoopTime->isChecked()) { links.erase(iter++); continue; } loopLinks_.push_back(iter->second); ++totalLocalTime; } else if(iter->second.type() == Link::kUserClosure) { if(ui_->checkBox_ignoreUserLoop->isChecked()) { links.erase(iter++); continue; } loopLinks_.push_back(iter->second); ++totalUser; } else if(iter->second.type() == Link::kLandmark) { UASSERT(iter->second.from() > 0 && iter->second.to() < 0); if(poses.find(iter->second.from()) != poses.end() && poses.find(iter->second.to()) == poses.end()) { poses.insert(std::make_pair(iter->second.to(), poses.at(iter->second.from())*iter->second.transform())); } loopLinks_.push_back(iter->second); ++totalLandmarks; } else if(iter->second.type() == Link::kPosePrior) { ++totalPriors; } else if(iter->second.type() == Link::kGravity) { ++totalGravity; } else { loopLinks_.push_back(iter->second); } ++iter; } updateLoopClosuresSlider(); ui_->label_loopClosures->setText(tr("(%1, %2, %3, %4, %5, %6, %7, %8, %9)") .arg(totalNeighbor) .arg(totalNeighborMerged) .arg(totalGlobal) .arg(totalLocalSpace) .arg(totalLocalTime) .arg(totalUser) .arg(totalPriors) .arg(totalLandmarks) .arg(totalGravity)); // remove intermediate nodes? if(ui_->checkBox_ignoreIntermediateNodes->isVisible() && ui_->checkBox_ignoreIntermediateNodes->isChecked()) { for(std::multimap::iterator iter=links.begin(); iter!=links.end(); ++iter) { if(iter->second.type() == Link::kNeighbor || iter->second.type() == Link::kNeighborMerged) { Link link = iter->second; while(uContains(weights_, link.to()) && weights_.at(link.to()) < 0) { std::multimap::iterator uter = links.find(link.to()); if(uter != links.end()) { UASSERT(links.count(link.to()) == 1); poses.erase(link.to()); link = link.merge(uter->second, uter->second.type()); links.erase(uter); } else { break; } } iter->second = link; } } } graphes_.push_back(poses); Optimizer * optimizer = Optimizer::create(ui_->parameters_toolbox->getParameters()); std::map posesOut; std::multimap linksOut; UINFO("Get connected graph from %d (%d poses, %d links)", fromId, (int)poses.size(), (int)links.size()); optimizer->getConnectedGraph( fromId, poses, links, posesOut, linksOut); UINFO("Connected graph of %d poses and %d links", (int)posesOut.size(), (int)linksOut.size()); QTime time; time.start(); std::map finalPoses = optimizer->optimize(fromId, posesOut, linksOut, ui_->checkBox_iterativeOptimization->isChecked()?&graphes_:0); ui_->label_timeOptimization->setNum(double(time.elapsed())/1000.0); graphLinks_ = linksOut; if(posesOut.size() && finalPoses.empty()) { UWARN("Optimization failed... (poses=%d, links=%d).", (int)posesOut.size(), (int)linksOut.size()); if(!optimizer->isCovarianceIgnored() || optimizer->type() != Optimizer::kTypeTORO) { QMessageBox::warning(this, tr("Graph optimization error!"), tr("Graph optimization has failed. See the terminal for potential errors. " "Give it a try with %1=0 and %2=true.").arg(Parameters::kOptimizerStrategy().c_str()).arg(Parameters::kOptimizerVarianceIgnored().c_str())); } else { QMessageBox::warning(this, tr("Graph optimization error!"), tr("Graph optimization has failed. See the terminal for potential errors.")); } } ui_->label_poses->setNum((int)finalPoses.size()); graphes_.push_back(finalPoses); delete optimizer; } if(graphes_.size()) { if(ui_->doubleSpinBox_optimizationScale->value()!=-1.0) { // scale all poses for(std::list >::iterator iter=graphes_.begin(); iter!=graphes_.end(); ++iter) { for(std::map::iterator jter=iter->begin(); jter!=iter->end(); ++jter) { jter->second = jter->second.clone(); jter->second.x() *= ui_->doubleSpinBox_optimizationScale->value(); jter->second.y() *= ui_->doubleSpinBox_optimizationScale->value(); jter->second.z() *= ui_->doubleSpinBox_optimizationScale->value(); } } } ui_->horizontalSlider_iterations->setMaximum((int)graphes_.size()-1); ui_->horizontalSlider_iterations->setValue((int)graphes_.size()-1); ui_->horizontalSlider_iterations->setEnabled(true); ui_->spinBox_optimizationsFrom->setEnabled(true); sliderIterationsValueChanged((int)graphes_.size()-1); } else { ui_->horizontalSlider_iterations->setEnabled(false); ui_->spinBox_optimizationsFrom->setEnabled(false); } } void DatabaseViewer::updateGrid() { if(sender() == ui_->checkBox_grid_2d && !ui_->checkBox_grid_2d->isChecked()) { //just remove map in occupancy grid view occupancyGridViewer_->removeOccupancyGridMap(); occupancyGridViewer_->update(); } else { ui_->comboBox_octomap_rendering_type->setVisible(ui_->checkBox_octomap->isChecked()); ui_->spinBox_grid_depth->setVisible(ui_->checkBox_octomap->isChecked()); ui_->checkBox_grid_empty->setVisible(!ui_->checkBox_octomap->isChecked() || ui_->comboBox_octomap_rendering_type->currentIndex()==0); ui_->label_octomap_cubes->setVisible(ui_->checkBox_octomap->isChecked()); ui_->label_octomap_depth->setVisible(ui_->checkBox_octomap->isChecked()); ui_->label_octomap_empty->setVisible(!ui_->checkBox_octomap->isChecked() || ui_->comboBox_octomap_rendering_type->currentIndex()==0); update3dView(); updateGraphView(); } } void DatabaseViewer::updateOctomapView() { #ifdef RTABMAP_OCTOMAP ui_->comboBox_octomap_rendering_type->setVisible(ui_->checkBox_octomap->isChecked()); ui_->spinBox_grid_depth->setVisible(ui_->checkBox_octomap->isChecked()); ui_->checkBox_grid_empty->setVisible(!ui_->checkBox_octomap->isChecked() || ui_->comboBox_octomap_rendering_type->currentIndex()==0); ui_->label_octomap_cubes->setVisible(ui_->checkBox_octomap->isChecked()); ui_->label_octomap_depth->setVisible(ui_->checkBox_octomap->isChecked()); ui_->label_octomap_empty->setVisible(!ui_->checkBox_octomap->isChecked() || ui_->comboBox_octomap_rendering_type->currentIndex()==0); if(ui_->checkBox_octomap->isChecked()) { if(octomap_) { occupancyGridViewer_->removeOctomap(); occupancyGridViewer_->removeCloud("octomap_obstacles"); occupancyGridViewer_->removeCloud("octomap_empty"); if(ui_->comboBox_octomap_rendering_type->currentIndex()>0) { occupancyGridViewer_->addOctomap(octomap_, ui_->spinBox_grid_depth->value(), ui_->comboBox_octomap_rendering_type->currentIndex()>1); } else { pcl::IndicesPtr obstacles(new std::vector); pcl::IndicesPtr empty(new std::vector); pcl::IndicesPtr ground(new std::vector); std::vector prob; pcl::PointCloud::Ptr cloud = octomap_->createCloud( ui_->spinBox_grid_depth->value(), obstacles.get(), empty.get(), ground.get(), true, 0, &prob); if(octomap_->hasColor()) { pcl::PointCloud::Ptr obstaclesCloud(new pcl::PointCloud); pcl::copyPointCloud(*cloud, *obstacles, *obstaclesCloud); occupancyGridViewer_->addCloud("octomap_obstacles", obstaclesCloud, Transform::getIdentity(), QColor(ui_->lineEdit_obstacleColor->text())); occupancyGridViewer_->setCloudPointSize("octomap_obstacles", 5); pcl::PointCloud::Ptr groundCloud(new pcl::PointCloud); pcl::copyPointCloud(*cloud, *ground, *groundCloud); occupancyGridViewer_->addCloud("octomap_ground", groundCloud, Transform::getIdentity(), QColor(ui_->lineEdit_groundColor->text())); occupancyGridViewer_->setCloudPointSize("octomap_ground", 5); } else { pcl::PointCloud::Ptr obstaclesCloud(new pcl::PointCloud); pcl::copyPointCloud(*cloud, *obstacles, *obstaclesCloud); occupancyGridViewer_->addCloud("octomap_obstacles", obstaclesCloud, Transform::getIdentity(), QColor(ui_->lineEdit_obstacleColor->text())); occupancyGridViewer_->setCloudPointSize("octomap_obstacles", 5); pcl::PointCloud::Ptr groundCloud(new pcl::PointCloud); pcl::copyPointCloud(*cloud, *ground, *groundCloud); occupancyGridViewer_->addCloud("octomap_ground", groundCloud, Transform::getIdentity(), QColor(ui_->lineEdit_groundColor->text())); occupancyGridViewer_->setCloudPointSize("octomap_ground", 5); } if(ui_->checkBox_grid_empty->isChecked()) { if(prob.size()==cloud->size()) { float occThr = Parameters::defaultGridGlobalOccupancyThr(); Parameters::parse(ui_->parameters_toolbox->getParameters(), Parameters::kGridGlobalOccupancyThr(), occThr); pcl::PointCloud::Ptr emptyCloud(new pcl::PointCloud); emptyCloud->resize(empty->size()); for(unsigned int i=0;isize(); ++i) { emptyCloud->points.at(i).x = cloud->points.at(empty->at(i)).x; emptyCloud->points.at(i).y = cloud->points.at(empty->at(i)).y; emptyCloud->points.at(i).z = cloud->points.at(empty->at(i)).z; QColor hsv = QColor::fromHsv(int(prob.at(empty->at(i))/occThr*240.0), 255, 255, 255); QRgb color = hsv.rgb(); emptyCloud->points.at(i).r = qRed(color); emptyCloud->points.at(i).g = qGreen(color); emptyCloud->points.at(i).b = qBlue(color); } occupancyGridViewer_->addCloud("octomap_empty", emptyCloud, Transform::getIdentity(), QColor(ui_->lineEdit_emptyColor->text())); occupancyGridViewer_->setCloudOpacity("octomap_empty", 0.5); occupancyGridViewer_->setCloudPointSize("octomap_empty", 5); } else { pcl::PointCloud::Ptr emptyCloud(new pcl::PointCloud); pcl::copyPointCloud(*cloud, *empty, *emptyCloud); occupancyGridViewer_->addCloud("octomap_empty", emptyCloud, Transform::getIdentity(), QColor(ui_->lineEdit_emptyColor->text())); occupancyGridViewer_->setCloudOpacity("octomap_empty", 0.5); occupancyGridViewer_->setCloudPointSize("octomap_empty", 5); } } } occupancyGridViewer_->update(); } if(ui_->dockWidget_view3d->isVisible() && ui_->checkBox_showGrid->isChecked()) { this->update3dView(); } } #endif } Link DatabaseViewer::findActiveLink(int from, int to) { Link link; std::multimap::iterator findIter = rtabmap::graph::findLink(linksRefined_, from ,to); if(findIter != linksRefined_.end()) { link = findIter->second; } else { findIter = rtabmap::graph::findLink(linksAdded_, from ,to); if(findIter != linksAdded_.end()) { link = findIter->second; } else if(!containsLink(linksRemoved_, from ,to)) { findIter = rtabmap::graph::findLink(links_, from ,to); if(findIter != links_.end()) { link = findIter->second; } } } return link; } bool DatabaseViewer::containsLink(std::multimap & links, int from, int to) { return rtabmap::graph::findLink(links, from, to) != links.end(); } void DatabaseViewer::refineConstraint() { int from = ids_.at(ui_->horizontalSlider_A->value()); int to = ids_.at(ui_->horizontalSlider_B->value()); refineConstraint(from, to, false); } void DatabaseViewer::refineConstraint(int from, int to, bool silent) { UDEBUG("%d -> %d", from, to); bool switchedIds = false; if(from == to) { UWARN("Cannot refine link to same node"); return; } Link currentLink = findActiveLink(from, to); if(!currentLink.isValid()) { UERROR("Not found link! (%d->%d)", from, to); return; } UDEBUG("%d -> %d (type=%d)", currentLink.from(), currentLink.to(), currentLink.type()); Transform t = currentLink.transform(); if(ui_->checkBox_showOptimized->isChecked() && (currentLink.type() == Link::kNeighbor || currentLink.type() == Link::kNeighborMerged) && graphes_.size() && (int)graphes_.size()-1 == ui_->horizontalSlider_iterations->maximum()) { std::map & graph = uValueAt(graphes_, ui_->horizontalSlider_iterations->value()); if(currentLink.type() == Link::kNeighbor || currentLink.type() == Link::kNeighborMerged) { std::map::iterator iterFrom = graph.find(currentLink.from()); std::map::iterator iterTo = graph.find(currentLink.to()); if(iterFrom != graph.end() && iterTo != graph.end()) { Transform topt = iterFrom->second.inverse()*iterTo->second; t = topt; } } } else if(ui_->checkBox_ignorePoseCorrection->isChecked() && graph::findLink(linksRefined_, currentLink.from(), currentLink.to()) == linksRefined_.end()) { if(currentLink.type() == Link::kNeighbor || currentLink.type() == Link::kNeighborMerged) { Transform poseFrom = uValue(odomPoses_, currentLink.from(), Transform()); Transform poseTo = uValue(odomPoses_, currentLink.to(), Transform()); if(!poseFrom.isNull() && !poseTo.isNull()) { t = poseFrom.inverse() * poseTo; // recompute raw odom transformation } } } Transform transform; RegistrationInfo info; Signature * fromS = 0; Signature * toS = 0; fromS = dbDriver_->loadSignature(currentLink.from()); if(fromS == 0) { UERROR("Signature %d not found!", currentLink.from()); return; } ParametersMap parameters = ui_->parameters_toolbox->getParameters(); UTimer timer; // Is it a multi-scan proximity detection? cv::Mat userData = currentLink.uncompressUserDataConst(); std::map scanPoses; if(currentLink.type() == Link::kLocalSpaceClosure && !currentLink.userDataCompressed().empty() && userData.type() == CV_8SC1 && userData.rows == 1 && userData.cols >= 8 && // including null str ending userData.at(userData.cols-1) == 0 && memcmp(userData.data, "SCANS:", 6) == 0 && currentLink.from() > currentLink.to()) { std::string scansStr = (const char *)userData.data; UINFO("Detected \"%s\" in links's user data", scansStr.c_str()); if(!scansStr.empty()) { std::list strs = uSplit(scansStr, ':'); if(strs.size() == 2) { std::list strIds = uSplit(strs.rbegin()->c_str(), ';'); for(std::list::iterator iter=strIds.begin(); iter!=strIds.end(); ++iter) { int id = atoi(iter->c_str()); if(uContains(odomPoses_, id)) { scanPoses.insert(*odomPoses_.find(id)); } else { UERROR("Not found %d node!", id); } } } } } if(scanPoses.size()) { //optimize the path's poses locally Optimizer * optimizer = Optimizer::create(ui_->parameters_toolbox->getParameters()); UASSERT(uContains(scanPoses, currentLink.to())); std::map posesOut; std::multimap linksOut; optimizer->getConnectedGraph( currentLink.to(), scanPoses, updateLinksWithModifications(links_), posesOut, linksOut); if(scanPoses.size() != posesOut.size()) { UWARN("Scan poses input and output are different! %d vs %d", (int)scanPoses.size(), (int)posesOut.size()); UWARN("Input poses: "); for(std::map::iterator iter=scanPoses.begin(); iter!=scanPoses.end(); ++iter) { UWARN(" %d", iter->first); } UWARN("Input links: "); std::multimap modifiedLinks = updateLinksWithModifications(links_); for(std::multimap::iterator iter=modifiedLinks.begin(); iter!=modifiedLinks.end(); ++iter) { UWARN(" %d->%d", iter->second.from(), iter->second.to()); } } scanPoses = optimizer->optimize(currentLink.to(), posesOut, linksOut); delete optimizer; std::map filteredScanPoses = scanPoses; float proximityFilteringRadius = 0.0f; Parameters::parse(parameters, Parameters::kRGBDProximityPathFilteringRadius(), proximityFilteringRadius); if(scanPoses.size() > 2 && proximityFilteringRadius > 0.0f) { // path filtering filteredScanPoses = graph::radiusPosesFiltering(scanPoses, proximityFilteringRadius, 0, true); // make sure the current pose is still here filteredScanPoses.insert(*scanPoses.find(currentLink.to())); } Transform toPoseInv = filteredScanPoses.at(currentLink.to()).inverse(); LaserScan fromScan; dbDriver_->loadNodeData(fromS, !silent, true, !silent, !silent); fromS->sensorData().uncompressData(); int maxPoints = fromScan.size(); pcl::PointCloud::Ptr assembledToClouds(new pcl::PointCloud); pcl::PointCloud::Ptr assembledToNormalClouds(new pcl::PointCloud); pcl::PointCloud::Ptr assembledToIClouds(new pcl::PointCloud); pcl::PointCloud::Ptr assembledToNormalIClouds(new pcl::PointCloud); for(std::map::const_iterator iter = filteredScanPoses.begin(); iter!=filteredScanPoses.end(); ++iter) { if(iter->first != currentLink.from()) { SensorData data; dbDriver_->getNodeData(iter->first, data); if(!data.laserScanCompressed().isEmpty()) { LaserScan scan; data.uncompressData(0, 0, &scan); if(!scan.isEmpty() && fromScan.format() == scan.format()) { if(scan.hasIntensity()) { if(scan.hasNormals()) { *assembledToNormalIClouds += *util3d::laserScanToPointCloudINormal(scan, toPoseInv * iter->second * scan.localTransform()); } else { *assembledToIClouds += *util3d::laserScanToPointCloudI(scan, toPoseInv * iter->second * scan.localTransform()); } } else { if(scan.hasNormals()) { *assembledToNormalClouds += *util3d::laserScanToPointCloudNormal(scan, toPoseInv * iter->second * scan.localTransform()); } else { *assembledToClouds += *util3d::laserScanToPointCloud(scan, toPoseInv * iter->second * scan.localTransform()); } } if(scan.size() > maxPoints) { maxPoints = scan.size(); } } } else { UWARN("Laser scan not found for signature %d", iter->first); } } } cv::Mat assembledScan; if(assembledToNormalClouds->size()) { assembledScan = fromScan.is2d()?util3d::laserScan2dFromPointCloud(*assembledToNormalClouds):util3d::laserScanFromPointCloud(*assembledToNormalClouds); } else if(assembledToClouds->size()) { assembledScan = fromScan.is2d()?util3d::laserScan2dFromPointCloud(*assembledToClouds):util3d::laserScanFromPointCloud(*assembledToClouds); } else if(assembledToNormalIClouds->size()) { assembledScan = fromScan.is2d()?util3d::laserScan2dFromPointCloud(*assembledToNormalIClouds):util3d::laserScanFromPointCloud(*assembledToNormalIClouds); } else if(assembledToIClouds->size()) { assembledScan = fromScan.is2d()?util3d::laserScan2dFromPointCloud(*assembledToIClouds):util3d::laserScanFromPointCloud(*assembledToIClouds); } SensorData assembledData; // scans are in base frame but for 2d scans, set the height so that correspondences matching works assembledData.setLaserScan(LaserScan( assembledScan, fromScan.maxPoints()?fromScan.maxPoints():maxPoints, fromScan.rangeMax(), fromScan.format(), fromScan.is2d()?Transform(0,0,fromScan.localTransform().z(),0,0,0):Transform::getIdentity())); RegistrationIcp registrationIcp(parameters); transform = registrationIcp.computeTransformation(fromS->sensorData(), assembledData, currentLink.transform(), &info); if(!transform.isNull()) { // local scan matching proximity detection should have higher variance (see Rtabmap::process()) info.covariance*=100.0; } } else { toS = dbDriver_->loadSignature(currentLink.to()); if(toS == 0) { UERROR("Signature %d not found!", currentLink.to()); delete fromS; return; } bool reextractVisualFeatures = uStr2Bool(parameters.at(Parameters::kRGBDLoopClosureReextractFeatures())); Registration * reg = Registration::create(parameters); if( reg->isScanRequired() || reg->isUserDataRequired() || reextractVisualFeatures || !silent) { dbDriver_->loadNodeData(fromS, reextractVisualFeatures || !silent, reg->isScanRequired() || !silent, reg->isUserDataRequired() || !silent, !silent); dbDriver_->loadNodeData(toS, reextractVisualFeatures || !silent, reg->isScanRequired() || !silent, reg->isUserDataRequired() || !silent, !silent); if(!silent) { fromS->sensorData().uncompressData(); toS->sensorData().uncompressData(); } } if(reextractVisualFeatures) { fromS->setWords(std::multimap()); fromS->setWords3(std::multimap()); fromS->setWordsDescriptors(std::multimap()); fromS->sensorData().setFeatures(std::vector(), std::vector(), cv::Mat()); toS->setWords(std::multimap()); toS->setWords3(std::multimap()); toS->setWordsDescriptors(std::multimap()); toS->sensorData().setFeatures(std::vector(), std::vector(), cv::Mat()); } if(reg->isScanRequired()) { if(ui_->checkBox_icp_from_depth->isChecked()) { // generate laser scans from depth image cv::Mat tmpA, tmpB, tmpC, tmpD; fromS->sensorData().uncompressData(&tmpA, &tmpB, 0); toS->sensorData().uncompressData(&tmpC, &tmpD, 0); pcl::PointCloud::Ptr cloudFrom = util3d::cloudFromSensorData( fromS->sensorData(), ui_->spinBox_icp_decimation->value()==0?1:ui_->spinBox_icp_decimation->value(), ui_->doubleSpinBox_icp_maxDepth->value(), ui_->doubleSpinBox_icp_minDepth->value(), 0, ui_->parameters_toolbox->getParameters()); pcl::PointCloud::Ptr cloudTo = util3d::cloudFromSensorData( toS->sensorData(), ui_->spinBox_icp_decimation->value()==0?1:ui_->spinBox_icp_decimation->value(), ui_->doubleSpinBox_icp_maxDepth->value(), ui_->doubleSpinBox_icp_minDepth->value(), 0, ui_->parameters_toolbox->getParameters()); int maxLaserScans = cloudFrom->size(); fromS->sensorData().setLaserScan(LaserScan(util3d::laserScanFromPointCloud(*util3d::removeNaNFromPointCloud(cloudFrom), Transform()), maxLaserScans, 0, LaserScan::kXYZ)); toS->sensorData().setLaserScan(LaserScan(util3d::laserScanFromPointCloud(*util3d::removeNaNFromPointCloud(cloudTo), Transform()), maxLaserScans, 0, LaserScan::kXYZ)); if(!fromS->sensorData().laserScanCompressed().isEmpty() || !toS->sensorData().laserScanCompressed().isEmpty()) { UWARN("There are laser scans in data, but generate laser scan from " "depth image option is activated. Ignoring saved laser scans..."); } } else { LaserScan tmpA, tmpB; fromS->sensorData().uncompressData(0, 0, &tmpA); toS->sensorData().uncompressData(0, 0, &tmpB); } } if(reg->isImageRequired() && reextractVisualFeatures) { cv::Mat tmpA, tmpB, tmpC, tmpD; fromS->sensorData().uncompressData(&tmpA, &tmpB, 0); toS->sensorData().uncompressData(&tmpC, &tmpD, 0); } UINFO("Uncompress time: %f s", timer.ticks()); if(fromS->id() < toS->id()) { transform = reg->computeTransformationMod(*fromS, *toS, t, &info); } else { transform = reg->computeTransformationMod(*toS, *fromS, t.isNull()?t:t.inverse(), &info); switchedIds = true; } delete reg; } UINFO("(%d ->%d) Registration time: %f s", currentLink.from(), currentLink.to(), timer.ticks()); if(!transform.isNull()) { if(!transform.isIdentity()) { if(info.covariance.at(0,0)<=0.0) { info.covariance = cv::Mat::eye(6,6,CV_64FC1)*0.0001; // epsilon if exact transform } } if(switchedIds) { transform = transform.inverse(); } Link newLink(currentLink.from(), currentLink.to(), currentLink.type(), transform, info.covariance.inv(), currentLink.userDataCompressed()); bool updated = false; std::multimap::iterator iter = linksRefined_.find(currentLink.from()); while(iter != linksRefined_.end() && iter->first == currentLink.from()) { if(iter->second.to() == currentLink.to() && iter->second.type() == currentLink.type()) { iter->second = newLink; updated = true; break; } ++iter; } if(!updated) { linksRefined_.insert(std::make_pair(newLink.from(), newLink)); updated = true; } if(updated && !silent) { this->updateGraphView(); } if(!silent && ui_->dockWidget_constraints->isVisible()) { if(toS && fromS->id() > 0 && toS->id() > 0) { updateLoopClosuresSlider(fromS->id(), toS->id()); if(newLink.type() != Link::kNeighbor && fromS->id() < toS->id()) { this->updateConstraintView(newLink.inverse(), true, *toS, *fromS); ui_->graphicsView_A->setFeatures(toS->getWords(), toS->sensorData().depthRaw()); ui_->graphicsView_B->setFeatures(fromS->getWords(), fromS->sensorData().depthRaw()); } else { this->updateConstraintView(newLink, true, *fromS, *toS); ui_->graphicsView_A->setFeatures(fromS->getWords(), fromS->sensorData().depthRaw()); ui_->graphicsView_B->setFeatures(toS->getWords(), toS->sensorData().depthRaw()); } updateWordsMatching(info.inliersIDs); } else { this->updateConstraintView(); } } } else if(!silent) { if(toS && fromS->id() > 0 && toS->id() > 0) { // just update matches in the views ui_->graphicsView_A->setFeatures(fromS->getWords(), fromS->sensorData().depthRaw()); ui_->graphicsView_B->setFeatures(toS->getWords(), toS->sensorData().depthRaw()); updateWordsMatching(info.inliersIDs); } QMessageBox::warning(this, tr("Refine link"), tr("Cannot find a transformation between nodes %1 and %2: %3").arg(currentLink.from()).arg(currentLink.to()).arg(info.rejectedMsg.c_str())); } delete fromS; delete toS; } void DatabaseViewer::addConstraint() { int from = ids_.at(ui_->horizontalSlider_A->value()); int to = ids_.at(ui_->horizontalSlider_B->value()); addConstraint(from, to, false); } bool DatabaseViewer::addConstraint(int from, int to, bool silent) { bool switchedIds = false; if(from == to) { UWARN("Cannot add link to same node"); return false; } else if(from > to) { int tmp = from; from = to; to = tmp; switchedIds = true; } std::list signatures; Signature * fromS=0; Signature * toS=0; Link newLink; RegistrationInfo info; if(!containsLink(linksAdded_, from, to) && !containsLink(links_, from, to)) { UASSERT(!containsLink(linksRemoved_, from, to)); UASSERT(!containsLink(linksRefined_, from, to)); ParametersMap parameters = ui_->parameters_toolbox->getParameters(); Registration * reg = Registration::create(parameters); bool loopCovLimited = Parameters::defaultRGBDLoopCovLimited(); Parameters::parse(parameters, Parameters::kRGBDLoopCovLimited(), loopCovLimited); std::vector odomMaxInf = odomMaxInf_; if(loopCovLimited && odomMaxInf_.empty()) { odomMaxInf = graph::getMaxOdomInf(updateLinksWithModifications(links_)); } Transform t; std::list ids; ids.push_back(from); ids.push_back(to); dbDriver_->loadSignatures(ids, signatures); if(signatures.size() != 2) { for(std::list::iterator iter=signatures.begin(); iter!=signatures.end(); ++iter) { delete *iter; } return false; } fromS = *signatures.begin(); toS = *signatures.rbegin(); bool reextractVisualFeatures = uStr2Bool(parameters.at(Parameters::kRGBDLoopClosureReextractFeatures())); if(reg->isScanRequired() || reg->isUserDataRequired() || reextractVisualFeatures || !silent) { // Add sensor data to generate features dbDriver_->loadNodeData(fromS, reextractVisualFeatures || !silent, reg->isScanRequired() || !silent, reg->isUserDataRequired() || !silent, !silent); fromS->sensorData().uncompressData(); dbDriver_->loadNodeData(toS, reextractVisualFeatures || !silent, reg->isScanRequired() || !silent, reg->isUserDataRequired() || !silent, !silent); toS->sensorData().uncompressData(); if(reextractVisualFeatures) { fromS->setWords(std::multimap()); fromS->setWords3(std::multimap()); fromS->setWordsDescriptors(std::multimap()); fromS->sensorData().setFeatures(std::vector(), std::vector(), cv::Mat()); toS->setWords(std::multimap()); toS->setWords3(std::multimap()); toS->setWordsDescriptors(std::multimap()); toS->sensorData().setFeatures(std::vector(), std::vector(), cv::Mat()); } } else if(!reextractVisualFeatures && fromS->getWords().empty() && toS->getWords().empty()) { UWARN("\"%s\" is false and signatures (%d and %d) don't have words, " "registration will not be possible. Set \"%s\" to true.", Parameters::kRGBDLoopClosureReextractFeatures().c_str(), fromS->id(), toS->id(), Parameters::kRGBDLoopClosureReextractFeatures().c_str()); } Transform guess; if(!reg->isImageRequired()) { // make a fake guess using globally optimized poses if(graphes_.size()) { std::map optimizedPoses = uValueAt(graphes_, ui_->horizontalSlider_iterations->value()); if(optimizedPoses.size() > 0) { std::map::iterator fromIter = optimizedPoses.find(from); std::map::iterator toIter = optimizedPoses.find(to); if(fromIter != optimizedPoses.end() && toIter != optimizedPoses.end()) { if(!silent) { if(QMessageBox::question(this, tr("Add constraint from optimized graph"), tr("Registration is done without vision (see %1 parameter), " "do you want to use a guess from the optimized graph?" "" "\n\nOtherwise, if " "the database has images, it is recommended to use %2=2 instead so that " "the guess can be found visually.") .arg(Parameters::kRegStrategy().c_str()).arg(Parameters::kRegStrategy().c_str()), QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes) == QMessageBox::Yes) { guess = fromIter->second.inverse() * toIter->second; } } else { guess = fromIter->second.inverse() * toIter->second; } } } } if(guess.isNull() && !silent) { if(QMessageBox::question(this, tr("Add constraint without guess"), tr("Registration is done without vision (see %1 parameter) and we cannot (or we don't want to) find relative " "transformation between the nodes with the current graph. Do you want to use an identity " "transform for ICP guess? " "" "\n\nOtherwise, if the database has images, it is recommended to use %2=2 " "instead so that the guess can be found visually.") .arg(Parameters::kRegStrategy().c_str()).arg(Parameters::kRegStrategy().c_str()), QMessageBox::Yes | QMessageBox::Abort, QMessageBox::Abort) == QMessageBox::Yes) { guess.setIdentity(); } } } t = reg->computeTransformationMod(*fromS, *toS, guess, &info); delete reg; UDEBUG(""); if(!t.isNull()) { cv::Mat information = info.covariance.inv(); if(odomMaxInf.size() == 6 && information.cols==6 && information.rows==6) { for(int i=0; i<6; ++i) { if(information.at(i,i) > odomMaxInf[i]) { information.at(i,i) = odomMaxInf[i]; } } } newLink = Link(from, to, Link::kUserClosure, t, information); } else if(!silent) { QMessageBox::warning(this, tr("Add link"), tr("Cannot find a transformation between nodes %1 and %2: %3").arg(from).arg(to).arg(info.rejectedMsg.c_str())); } } else if(containsLink(linksRemoved_, from, to)) { newLink = rtabmap::graph::findLink(linksRemoved_, from, to)->second; } bool updateConstraints = newLink.isValid(); float maxOptimizationError = uStr2Float(ui_->parameters_toolbox->getParameters().at(Parameters::kRGBDOptimizeMaxError())); if(newLink.isValid() && maxOptimizationError > 0.0f && uStr2Int(ui_->parameters_toolbox->getParameters().at(Parameters::kOptimizerIterations())) > 0.0f) { int fromId = newLink.from(); std::multimap linksIn = updateLinksWithModifications(links_); linksIn.insert(std::make_pair(newLink.from(), newLink)); const Link * maxLinearLink = 0; const Link * maxAngularLink = 0; float maxLinearErrorRatio = 0.0f; float maxAngularErrorRatio = 0.0f; Optimizer * optimizer = Optimizer::create(ui_->parameters_toolbox->getParameters()); std::map poses; std::multimap links; UASSERT(odomPoses_.find(fromId) != odomPoses_.end()); UASSERT_MSG(odomPoses_.find(newLink.from()) != odomPoses_.end(), uFormat("id=%d poses=%d links=%d", newLink.from(), (int)odomPoses_.size(), (int)linksIn.size()).c_str()); UASSERT_MSG(odomPoses_.find(newLink.to()) != odomPoses_.end(), uFormat("id=%d poses=%d links=%d", newLink.to(), (int)odomPoses_.size(), (int)linksIn.size()).c_str()); optimizer->getConnectedGraph(fromId, odomPoses_, linksIn, poses, links); // use already optimized poses if(graphes_.size()) { const std::map & optimizedPoses = graphes_.back(); for(std::map::iterator iter = poses.begin(); iter!=poses.end(); ++iter) { if(optimizedPoses.find(iter->first) != optimizedPoses.end()) { iter->second = optimizedPoses.at(iter->first); } } } UASSERT(poses.find(fromId) != poses.end()); UASSERT_MSG(poses.find(newLink.from()) != poses.end(), uFormat("id=%d poses=%d links=%d", newLink.from(), (int)poses.size(), (int)links.size()).c_str()); UASSERT_MSG(poses.find(newLink.to()) != poses.end(), uFormat("id=%d poses=%d links=%d", newLink.to(), (int)poses.size(), (int)links.size()).c_str()); UASSERT(graph::findLink(links, newLink.from(), newLink.to()) != links.end()); std::map posesIn = poses; poses = optimizer->optimize(fromId, posesIn, links); if(posesIn.size() && poses.empty()) { UWARN("Optimization failed... (poses=%d, links=%d).", (int)posesIn.size(), (int)links.size()); } std::string msg; if(poses.size()) { float maxLinearError = 0.0f; float maxAngularError = 0.0f; graph::computeMaxGraphErrors( poses, links, maxLinearErrorRatio, maxAngularErrorRatio, maxLinearError, maxAngularError, &maxLinearLink, &maxAngularLink); if(maxLinearLink) { UINFO("Max optimization linear error = %f m (link %d->%d, var=%f, ratio error/std=%f)", maxLinearError, maxLinearLink->from(), maxLinearLink->to(), maxLinearLink->transVariance(), maxLinearError/sqrt(maxLinearLink->transVariance())); if(maxLinearErrorRatio > maxOptimizationError) { msg = uFormat("Rejecting edge %d->%d because " "graph error is too large (abs=%f m) after optimization (ratio %f for edge %d->%d, stddev=%f m). " "\"%s\" is %f.", newLink.from(), newLink.to(), maxLinearError, maxLinearErrorRatio, maxLinearLink->from(), maxLinearLink->to(), sqrt(maxLinearLink->transVariance()), Parameters::kRGBDOptimizeMaxError().c_str(), maxOptimizationError); } } if(maxAngularLink) { UINFO("Max optimization angular error = %f deg (link %d->%d, var=%f, ratio error/std=%f)", maxAngularError*180.0f/CV_PI, maxAngularLink->from(), maxAngularLink->to(), maxAngularLink->rotVariance(), maxAngularError/sqrt(maxAngularLink->rotVariance())); if(maxAngularErrorRatio > maxOptimizationError) { msg = uFormat("Rejecting edge %d->%d because " "graph error is too large (abs=%f deg) after optimization (ratio %f for edge %d->%d, stddev=%f deg). " "\"%s\" is %f.", newLink.from(), newLink.to(), maxAngularError*180.0f/CV_PI, maxAngularErrorRatio, maxAngularLink->from(), maxAngularLink->to(), sqrt(maxAngularLink->rotVariance()), Parameters::kRGBDOptimizeMaxError().c_str(), maxOptimizationError); } } } else { msg = uFormat("Rejecting edge %d->%d because graph optimization has failed!", newLink.from(), newLink.to()); } if(!msg.empty()) { UWARN("%s", msg.c_str()); if(!silent) { QMessageBox::warning(this, tr("Add link"), tr("%1").arg(msg.c_str())); } updateConstraints = false; } } if(updateConstraints) { if(containsLink(linksRemoved_, from, to)) { //simply remove from linksRemoved linksRemoved_.erase(rtabmap::graph::findLink(linksRemoved_, from, to)); } else { if(newLink.from() < newLink.to()) { newLink = newLink.inverse(); } linksAdded_.insert(std::make_pair(newLink.from(), newLink)); } } if(!silent) { if(fromS && toS) { if((updateConstraints && newLink.from() > newLink.to()) || (!updateConstraints && switchedIds)) { Signature * tmpS = fromS; fromS = toS; toS = tmpS; } if(updateConstraints) { updateLoopClosuresSlider(fromS->id(), toS->id()); this->updateGraphView(); this->updateConstraintView(newLink, false, *fromS, *toS); } ui_->graphicsView_A->setFeatures(fromS->getWords(), fromS->sensorData().depthRaw()); ui_->graphicsView_B->setFeatures(toS->getWords(), toS->sensorData().depthRaw()); updateWordsMatching(info.inliersIDs); } else if(updateConstraints) { updateLoopClosuresSlider(from, to); this->updateGraphView(); } } for(std::list::iterator iter=signatures.begin(); iter!=signatures.end(); ++iter) { delete *iter; } return updateConstraints; } void DatabaseViewer::resetConstraint() { int from = ids_.at(ui_->horizontalSlider_A->value()); int to = ids_.at(ui_->horizontalSlider_B->value()); if(from < to) { int tmp = to; to = from; from = tmp; } if(from == to) { UWARN("Cannot reset link to same node"); return; } std::multimap::iterator iter = rtabmap::graph::findLink(linksRefined_, from, to); if(iter != linksRefined_.end()) { linksRefined_.erase(iter); this->updateGraphView(); } iter = rtabmap::graph::findLink(links_, from, to); if(iter != links_.end()) { this->updateConstraintView(iter->second); } iter = rtabmap::graph::findLink(linksAdded_, from, to); if(iter != linksAdded_.end()) { this->updateConstraintView(iter->second); } } void DatabaseViewer::rejectConstraint() { int from = ids_.at(ui_->horizontalSlider_A->value()); int to = ids_.at(ui_->horizontalSlider_B->value()); if(from < to) { int tmp = to; to = from; from = tmp; } if(from == to) { UWARN("Cannot reject link to same node"); return; } bool removed = false; // find the original one std::multimap::iterator iter; iter = rtabmap::graph::findLink(links_, from, to); if(iter != links_.end()) { if(iter->second.type() == Link::kNeighbor || iter->second.type() == Link::kNeighborMerged) { QMessageBox::StandardButton button = QMessageBox::warning(this, tr("Reject link"), tr("Removing the neighbor link %1->%2 will split the graph. Do you want to continue?").arg(from).arg(to), QMessageBox::Yes | QMessageBox::No, QMessageBox::No); if(button != QMessageBox::Yes) { return; } } linksRemoved_.insert(*iter); removed = true; } // remove from refined and added iter = rtabmap::graph::findLink(linksRefined_, from, to); if(iter != linksRefined_.end()) { linksRefined_.erase(iter); removed = true; } iter = rtabmap::graph::findLink(linksAdded_, from, to); if(iter != linksAdded_.end()) { linksAdded_.erase(iter); removed = true; } if(removed) { this->updateGraphView(); } updateLoopClosuresSlider(); } std::multimap DatabaseViewer::updateLinksWithModifications( const std::multimap & edgeConstraints) { UDEBUG("linksAdded_=%d linksRefined_=%d linksRemoved_=%d", (int)linksAdded_.size(), (int)linksRefined_.size(), (int)linksRemoved_.size()); std::multimap links; for(std::multimap::const_iterator iter=edgeConstraints.begin(); iter!=edgeConstraints.end(); ++iter) { std::multimap::iterator findIter; findIter = rtabmap::graph::findLink(linksRemoved_, iter->second.from(), iter->second.to()); if(findIter != linksRemoved_.end()) { UDEBUG("Removed link (%d->%d, %d)", iter->second.from(), iter->second.to(), iter->second.type()); continue; // don't add this link } findIter = rtabmap::graph::findLink(linksRefined_, iter->second.from(), iter->second.to()); if(findIter!=linksRefined_.end()) { links.insert(*findIter); // add the refined link UDEBUG("Updated link (%d->%d, %d)", iter->second.from(), iter->second.to(), iter->second.type()); continue; } links.insert(*iter); // add original link } //look for added links for(std::multimap::const_iterator iter=linksAdded_.begin(); iter!=linksAdded_.end(); ++iter) { std::multimap::iterator findIter = rtabmap::graph::findLink(linksRefined_, iter->second.from(), iter->second.to()); if(findIter!=linksRefined_.end()) { links.insert(*findIter); // add the refined link UDEBUG("Added refined link (%d->%d, %d)", findIter->second.from(), findIter->second.to(), findIter->second.type()); continue; } UDEBUG("Added link (%d->%d, %d)", iter->second.from(), iter->second.to(), iter->second.type()); links.insert(*iter); } return links; } void DatabaseViewer::updateLoopClosuresSlider(int from, int to) { UDEBUG("%d %d", from, to); int size = loopLinks_.size(); loopLinks_.clear(); std::multimap links = updateLinksWithModifications(links_); int position = ui_->horizontalSlider_loops->value(); std::multimap linksSortedByParents; for(std::multimap::iterator iter = links.begin(); iter!=links.end(); ++iter) { if(iter->second.to() > iter->second.from()) { linksSortedByParents.insert(std::make_pair(iter->second.to(), iter->second.inverse())); } else if(iter->second.to() != iter->second.from()) { linksSortedByParents.insert(*iter); } } for(std::multimap::iterator iter = linksSortedByParents.begin(); iter!=linksSortedByParents.end(); ++iter) { if(!iter->second.transform().isNull()) { if(iter->second.type() != rtabmap::Link::kNeighbor && iter->second.type() != rtabmap::Link::kNeighborMerged) { if((iter->second.from() == from && iter->second.to() == to) || (iter->second.to() == from && iter->second.from() == to)) { position = loopLinks_.size(); } loopLinks_.append(iter->second); } } else { UERROR("Transform null for link from %d to %d", iter->first, iter->second.to()); } } if(loopLinks_.size()) { if(loopLinks_.size() == 1) { // just to be able to move the cursor of the loop slider loopLinks_.push_back(loopLinks_.front()); } ui_->horizontalSlider_loops->setMinimum(0); ui_->horizontalSlider_loops->setMaximum(loopLinks_.size()-1); ui_->horizontalSlider_loops->setEnabled(true); if(position != ui_->horizontalSlider_loops->value()) { ui_->horizontalSlider_loops->setValue(position); } else if(size != loopLinks_.size()) { this->updateConstraintView(loopLinks_.at(position)); } } else { ui_->horizontalSlider_loops->setEnabled(false); constraintsViewer_->removeAllClouds(); constraintsViewer_->update(); updateConstraintButtons(); } } void DatabaseViewer::notifyParametersChanged(const QStringList & parametersChanged) { bool updateStereo = false; bool updateGraphView = false; for(QStringList::const_iterator iter=parametersChanged.constBegin(); iter!=parametersChanged.constEnd() && (!updateStereo || !updateGraphView); ++iter) { QString group = iter->split('/').first(); if(!updateStereo && group == "Stereo") { updateStereo = true; continue; } if(!updateGraphView && group == "Optimize") { updateGraphView = true; continue; } } if(updateStereo) { this->updateStereo(); } if(updateGraphView) { this->updateGraphView(); } this->configModified(); } } // namespace rtabmap