2011-06-05 14:45:39 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2010-2011, Mathieu Labbe and IntRoLab - Universite de Sherbrooke
|
|
|
|
|
*
|
|
|
|
|
* This file is part of RTAB-Map.
|
|
|
|
|
*
|
|
|
|
|
* RTAB-Map is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* RTAB-Map is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with RTAB-Map. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "MainWindow.h"
|
|
|
|
|
#include "ui_MainWindow.h"
|
|
|
|
|
#include <QtGui/QMessageBox>
|
|
|
|
|
#include <QtGui/QFileDialog>
|
|
|
|
|
#include <QtGui/QInputDialog>
|
|
|
|
|
#include <QtCore/QBuffer>
|
|
|
|
|
#include <QtCore/QTextStream>
|
|
|
|
|
#include <utilite/ULogger.h>
|
|
|
|
|
#include <utilite/UDirectory.h>
|
|
|
|
|
#include <utilite/UConversion.h>
|
|
|
|
|
#include <opencv2/core/core_c.h>
|
|
|
|
|
#include <utilite/UTimer.h>
|
2012-06-24 17:19:34 +00:00
|
|
|
#include "rtabmap/core/KeypointMemory.h"
|
|
|
|
|
#include "rtabmap/core/SMMemory.h"
|
2011-06-05 14:45:39 +00:00
|
|
|
#include "rtabmap/core/DBDriver.h"
|
2012-06-24 17:19:34 +00:00
|
|
|
#include "rtabmap/gui/KeypointItem.h"
|
2011-06-05 14:45:39 +00:00
|
|
|
|
|
|
|
|
MainWindow::MainWindow(QWidget * parent) :
|
|
|
|
|
QMainWindow(parent),
|
|
|
|
|
memory_(0)
|
|
|
|
|
{
|
|
|
|
|
pathDatabase_ = QDir::homePath()+"/Documents/RTAB-Map"; //use home directory by default
|
|
|
|
|
|
|
|
|
|
if(!UDirectory::exists(pathDatabase_.toStdString()))
|
|
|
|
|
{
|
|
|
|
|
pathDatabase_ = QDir::homePath();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ui_ = new Ui_MainWindow();
|
|
|
|
|
ui_->setupUi(this);
|
|
|
|
|
|
|
|
|
|
connect(ui_->actionQuit, SIGNAL(triggered()), this, SLOT(close()));
|
|
|
|
|
|
|
|
|
|
// connect actions with custom slots
|
|
|
|
|
connect(ui_->actionOpen_database, SIGNAL(triggered()), this, SLOT(openDatabase()));
|
|
|
|
|
connect(ui_->actionGenerate_graph_dot, SIGNAL(triggered()), this, SLOT(generateGraph()));
|
|
|
|
|
connect(ui_->actionGenerate_local_graph_dot, SIGNAL(triggered()), this, SLOT(generateLocalGraph()));
|
|
|
|
|
connect(ui_->actionClean_database, SIGNAL(triggered()), this, SLOT(cleanDatabase()));
|
|
|
|
|
connect(ui_->actionClean_local_graph, SIGNAL(triggered()), this, SLOT(cleanLocalGraph()));
|
|
|
|
|
|
|
|
|
|
ui_->graphicsView_A->setScene(new QGraphicsScene(this));
|
|
|
|
|
ui_->graphicsView_B->setScene(new QGraphicsScene(this));
|
|
|
|
|
|
|
|
|
|
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)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MainWindow::~MainWindow()
|
|
|
|
|
{
|
|
|
|
|
delete ui_;
|
|
|
|
|
if(memory_)
|
|
|
|
|
{
|
|
|
|
|
delete memory_;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::openDatabase()
|
|
|
|
|
{
|
2012-06-24 17:19:34 +00:00
|
|
|
QStringList types;
|
|
|
|
|
types << "Keypoint" << "Sensorimotor";
|
|
|
|
|
bool ok = false;
|
|
|
|
|
QString type = QInputDialog::getItem(this, tr("Select database type"), tr("Type"), types, 0, false, &ok);
|
|
|
|
|
if(ok && !type.isEmpty())
|
2011-06-05 14:45:39 +00:00
|
|
|
{
|
2012-06-24 17:19:34 +00:00
|
|
|
QString path = QFileDialog::getOpenFileName(this, tr("Select file"), pathDatabase_, tr("Databases (*.db)"));
|
|
|
|
|
if(!path.isEmpty())
|
2011-06-05 14:45:39 +00:00
|
|
|
{
|
2012-06-24 17:19:34 +00:00
|
|
|
if(memory_)
|
|
|
|
|
{
|
|
|
|
|
delete memory_;
|
|
|
|
|
memory_ = 0;
|
|
|
|
|
imagesMap_.clear();
|
|
|
|
|
ids_.clear();
|
|
|
|
|
}
|
2011-06-05 14:45:39 +00:00
|
|
|
|
2012-06-24 17:19:34 +00:00
|
|
|
std::string driverType = "sqlite3";
|
|
|
|
|
rtabmap::ParametersMap parameters;
|
|
|
|
|
parameters.insert(rtabmap::ParametersPair(rtabmap::Parameters::kDbSqlite3InMemory(), "false"));
|
|
|
|
|
if(type.compare("Keypoint") == 0)
|
|
|
|
|
{
|
|
|
|
|
memory_ = new rtabmap::KeypointMemory(parameters);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
memory_ = new rtabmap::SMMemory(parameters);
|
|
|
|
|
}
|
|
|
|
|
if(!memory_)
|
|
|
|
|
{
|
|
|
|
|
QMessageBox::warning(this, "Database error", tr("Can't create database driver \"%1\"").arg(driverType.c_str()));
|
|
|
|
|
}
|
|
|
|
|
else if(!memory_->init(driverType, path.toStdString()))
|
|
|
|
|
{
|
|
|
|
|
QMessageBox::warning(this, "Database error", tr("Can't open database \"%1\"").arg(path));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
pathDatabase_ = UDirectory::getDir(path.toStdString()).c_str();
|
|
|
|
|
updateIds();
|
|
|
|
|
}
|
2011-06-05 14:45:39 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::updateIds()
|
|
|
|
|
{
|
|
|
|
|
if(!memory_)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::set<int> ids = memory_->getAllSignatureIds();
|
|
|
|
|
ids_ = QList<int>::fromStdList(std::list<int>(ids.begin(), ids.end()));
|
|
|
|
|
ids_.prepend(0);
|
|
|
|
|
|
|
|
|
|
UDEBUG("Loaded %d ids", ids_.size());
|
|
|
|
|
|
|
|
|
|
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->setSliderPosition(0);
|
|
|
|
|
ui_->horizontalSlider_B->setSliderPosition(0);
|
|
|
|
|
ui_->horizontalSlider_A->setEnabled(true);
|
|
|
|
|
ui_->horizontalSlider_B->setEnabled(true);
|
|
|
|
|
ui_->label_idA->setText("0");
|
|
|
|
|
ui_->label_idB->setText("0");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ui_->horizontalSlider_A->setEnabled(false);
|
|
|
|
|
ui_->horizontalSlider_B->setEnabled(false);
|
|
|
|
|
ui_->label_idA->setText("NaN");
|
|
|
|
|
ui_->label_idB->setText("NaN");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::cleanDatabase()
|
|
|
|
|
{
|
|
|
|
|
if(!memory_ || !ids_.size())
|
|
|
|
|
{
|
|
|
|
|
QMessageBox::warning(this, tr("Cannot clean the database"), tr("A database (not empty) must must loaded first...\nUse File->Open database."));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ok;
|
|
|
|
|
int depth = QInputDialog::getInt(this, tr("Depth around the weighted locations?"), tr("Depth"), 10, 1, 1000, 1, &ok);
|
|
|
|
|
if(ok)
|
|
|
|
|
{
|
|
|
|
|
UINFO("Cleaning...");
|
|
|
|
|
//Remove all signatures with null weight and between two intersections
|
|
|
|
|
memory_->cleanLTM(depth);
|
|
|
|
|
|
|
|
|
|
//dbDriver_->executeNoResult(std::string("DELETE FROM Signature WHERE loopClosureId!=0;"));
|
|
|
|
|
//dbDriver_->executeNoResult(std::string("DELETE FROM Neighbor WHERE NOT EXISTS (SELECT * FROM Signature WHERE Signature.id = Neighbor.sid);"));
|
|
|
|
|
//dbDriver_->executeNoResult(std::string("DELETE FROM Neighbor WHERE NOT EXISTS (SELECT * FROM Signature WHERE Signature.id = Neighbor.nid);"));
|
|
|
|
|
|
|
|
|
|
// Clean links
|
|
|
|
|
//dbDriver_->executeNoResult(std::string("DELETE FROM Map_SS_VW WHERE NOT EXISTS (SELECT * FROM Signature WHERE Signature.id = signatureId);"));
|
|
|
|
|
|
|
|
|
|
// Clean words
|
|
|
|
|
//dbDriver_->deleteUnreferencedWords();
|
|
|
|
|
|
|
|
|
|
updateIds();
|
|
|
|
|
UINFO("Finished cleaning!");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::cleanLocalGraph()
|
|
|
|
|
{
|
|
|
|
|
if(!ids_.size() || !memory_)
|
|
|
|
|
{
|
|
|
|
|
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)
|
|
|
|
|
{
|
|
|
|
|
UTimer timer;
|
|
|
|
|
UINFO("Cleaning local graph for location %d", id);
|
|
|
|
|
|
|
|
|
|
memory_->cleanLocalGraph(id, margin);
|
|
|
|
|
|
|
|
|
|
updateIds();
|
|
|
|
|
UINFO("time=%fs", timer.ticks());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::generateGraph()
|
|
|
|
|
{
|
|
|
|
|
if(!memory_)
|
|
|
|
|
{
|
|
|
|
|
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())
|
|
|
|
|
{
|
|
|
|
|
memory_->generateGraph(path.toStdString());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::generateLocalGraph()
|
|
|
|
|
{
|
|
|
|
|
if(!ids_.size() || !memory_)
|
|
|
|
|
{
|
|
|
|
|
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())
|
|
|
|
|
{
|
2012-06-24 17:19:34 +00:00
|
|
|
double dbAccessTime = 0.0;
|
|
|
|
|
std::map<int, int> ids = memory_->getNeighborsId(dbAccessTime, id, margin, -1, false, false, false);
|
|
|
|
|
|
|
|
|
|
if(ids.size() > 0)
|
2011-06-05 14:45:39 +00:00
|
|
|
{
|
2012-06-24 17:19:34 +00:00
|
|
|
ids.insert(std::pair<int,int>(id, 0));
|
|
|
|
|
std::set<int> idsSet;
|
|
|
|
|
for(std::map<int, int>::iterator iter = ids.begin(); iter!=ids.end(); ++iter)
|
2012-03-03 01:46:30 +00:00
|
|
|
{
|
2012-06-24 17:19:34 +00:00
|
|
|
idsSet.insert(idsSet.end(), iter->first);
|
|
|
|
|
UINFO("Node %d", iter->first);
|
2012-03-03 01:46:30 +00:00
|
|
|
}
|
2012-06-24 17:19:34 +00:00
|
|
|
UINFO("idsSet=%d", idsSet.size());
|
|
|
|
|
memory_->generateGraph(path.toStdString(), idsSet);
|
2012-03-03 01:46:30 +00:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2012-06-24 17:19:34 +00:00
|
|
|
QMessageBox::critical(this, tr("Error"), tr("No neighbors found for signature %1.").arg(id));
|
2011-06-05 14:45:39 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-03-03 01:46:30 +00:00
|
|
|
void MainWindow::drawKeypoints(const std::multimap<int, cv::KeyPoint> & refWords, QGraphicsScene * scene)
|
|
|
|
|
{
|
|
|
|
|
if(!scene)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
rtabmap::KeypointItem * item = 0;
|
|
|
|
|
int alpha = 70;
|
|
|
|
|
for(std::multimap<int, cv::KeyPoint>::const_iterator i = refWords.begin(); i != refWords.end(); ++i )
|
|
|
|
|
{
|
|
|
|
|
const cv::KeyPoint & r = (*i).second;
|
|
|
|
|
int id = (*i).first;
|
|
|
|
|
QString info = QString( "WordRef = %1\n"
|
|
|
|
|
"Laplacian = %2\n"
|
|
|
|
|
"Dir = %3\n"
|
|
|
|
|
"Hessian = %4\n"
|
|
|
|
|
"X = %5\n"
|
|
|
|
|
"Y = %6\n"
|
|
|
|
|
"Size = %7").arg(id).arg(1).arg(r.angle).arg(r.response).arg(r.pt.x).arg(r.pt.y).arg(r.size);
|
|
|
|
|
float radius = r.size*1.2/9.*2;
|
|
|
|
|
|
|
|
|
|
item = new rtabmap::KeypointItem(r.pt.x-radius, r.pt.y-radius, radius*2, info, QColor(255, 255, 0, alpha));
|
|
|
|
|
|
|
|
|
|
scene->addItem(item);
|
|
|
|
|
item->setZValue(1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-05 14:45:39 +00:00
|
|
|
void MainWindow::sliderAValueChanged(int value)
|
|
|
|
|
{
|
2012-06-24 17:19:34 +00:00
|
|
|
this->update(value,
|
|
|
|
|
ui_->label_indexA,
|
|
|
|
|
ui_->label_actionsA,
|
|
|
|
|
ui_->label_parentsA,
|
|
|
|
|
ui_->label_childrenA,
|
|
|
|
|
ui_->graphicsView_A,
|
|
|
|
|
ui_->label_idA);
|
2011-06-05 14:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::sliderBValueChanged(int value)
|
|
|
|
|
{
|
2012-06-24 17:19:34 +00:00
|
|
|
this->update(value,
|
|
|
|
|
ui_->label_indexB,
|
|
|
|
|
ui_->label_actionsB,
|
|
|
|
|
ui_->label_parentsB,
|
|
|
|
|
ui_->label_childrenB,
|
|
|
|
|
ui_->graphicsView_B,
|
|
|
|
|
ui_->label_idB);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::update(int value,
|
|
|
|
|
QLabel * labelIndex,
|
|
|
|
|
QLabel * labelActions,
|
|
|
|
|
QLabel * labelParents,
|
|
|
|
|
QLabel * labelChildren,
|
|
|
|
|
QGraphicsView * view,
|
|
|
|
|
QLabel * labelId)
|
|
|
|
|
{
|
|
|
|
|
UTimer timer;
|
|
|
|
|
labelIndex->setText(QString::number(value));
|
|
|
|
|
labelActions->clear();
|
|
|
|
|
labelParents->clear();
|
|
|
|
|
labelChildren->clear();
|
2011-06-05 14:45:39 +00:00
|
|
|
if(value >= 0 && value < ids_.size())
|
|
|
|
|
{
|
2012-06-24 17:19:34 +00:00
|
|
|
view->scene()->clear();
|
2011-06-05 14:45:39 +00:00
|
|
|
int id = ids_.at(value);
|
2012-06-24 17:19:34 +00:00
|
|
|
labelId->setText(QString::number(id));
|
2011-06-05 14:45:39 +00:00
|
|
|
if(id>0)
|
|
|
|
|
{
|
2012-03-03 01:46:30 +00:00
|
|
|
//image
|
2011-06-05 14:45:39 +00:00
|
|
|
QImage img;
|
|
|
|
|
QMap<int, QByteArray>::iterator iter = imagesMap_.find(id);
|
|
|
|
|
if(iter == imagesMap_.end())
|
|
|
|
|
{
|
|
|
|
|
if(memory_)
|
|
|
|
|
{
|
2012-06-24 17:19:34 +00:00
|
|
|
std::list<rtabmap::Sensor> sensors = memory_->getRawData(id);
|
|
|
|
|
if(sensors.size())
|
2011-06-05 14:45:39 +00:00
|
|
|
{
|
2012-06-24 17:19:34 +00:00
|
|
|
std::list<rtabmap::Sensor>::const_iterator jter = sensors.begin();
|
|
|
|
|
for(; jter!=sensors.end(); ++jter)
|
2011-06-05 14:45:39 +00:00
|
|
|
{
|
2012-06-24 17:19:34 +00:00
|
|
|
if(jter->type() == rtabmap::Sensor::kTypeImage)
|
|
|
|
|
{
|
|
|
|
|
break; //Stop to first
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(jter != sensors.end())
|
|
|
|
|
{
|
|
|
|
|
IplImage iplImg = jter->data();
|
|
|
|
|
img = ipl2QImage(&iplImg);
|
|
|
|
|
if(!img.isNull())
|
|
|
|
|
{
|
|
|
|
|
QByteArray ba;
|
|
|
|
|
QBuffer buffer(&ba);
|
|
|
|
|
buffer.open(QIODevice::WriteOnly);
|
|
|
|
|
img.save(&buffer, "BMP"); // writes image into ba in BMP format
|
|
|
|
|
imagesMap_.insert(id, ba);
|
|
|
|
|
}
|
2011-06-05 14:45:39 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2012-03-03 01:46:30 +00:00
|
|
|
img.loadFromData(iter.value(), "BMP");
|
|
|
|
|
}
|
|
|
|
|
|
2012-06-24 17:19:34 +00:00
|
|
|
if(memory_ && dynamic_cast<rtabmap::KeypointMemory*>(memory_))
|
2012-03-03 01:46:30 +00:00
|
|
|
{
|
2012-06-24 17:19:34 +00:00
|
|
|
std::multimap<int, cv::KeyPoint> words = dynamic_cast<rtabmap::KeypointMemory*>(memory_)->getWords(id);
|
2012-03-03 01:46:30 +00:00
|
|
|
if(words.size())
|
|
|
|
|
{
|
2012-06-24 17:19:34 +00:00
|
|
|
drawKeypoints(words, view->scene());
|
2012-03-03 01:46:30 +00:00
|
|
|
}
|
2011-06-05 14:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(!img.isNull())
|
|
|
|
|
{
|
2012-06-24 17:19:34 +00:00
|
|
|
view->scene()->addPixmap(QPixmap::fromImage(img));
|
2011-06-05 14:45:39 +00:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ULOGGER_DEBUG("Image is empty");
|
|
|
|
|
}
|
2012-03-03 01:46:30 +00:00
|
|
|
|
|
|
|
|
// actions
|
|
|
|
|
if(id-1 > 0)
|
|
|
|
|
{
|
|
|
|
|
std::list<rtabmap::NeighborLink> links = memory_->getNeighborLinks(id-1, true, true);
|
|
|
|
|
for(std::list<rtabmap::NeighborLink>::iterator iter = links.begin(); iter!=links.end(); ++iter)
|
|
|
|
|
{
|
2012-06-24 17:19:34 +00:00
|
|
|
if(iter->toId()>id-1 && iter->actuators().size())
|
2012-03-03 01:46:30 +00:00
|
|
|
{
|
2012-06-24 17:19:34 +00:00
|
|
|
QString str;
|
|
|
|
|
const std::list<rtabmap::Actuator> & actuators = iter->actuators();
|
2012-03-03 01:46:30 +00:00
|
|
|
unsigned int j=0;
|
2012-06-24 17:19:34 +00:00
|
|
|
for(std::list<rtabmap::Actuator>::const_iterator jter=actuators.begin(); jter!=actuators.end(); ++jter)
|
2012-03-03 01:46:30 +00:00
|
|
|
{
|
2012-06-24 17:19:34 +00:00
|
|
|
if(jter->data().elemSize() == 1)
|
|
|
|
|
{
|
|
|
|
|
for(unsigned int i=0; i<jter->data().total() * jter->data().elemSize(); i+=jter->data().elemSize())
|
|
|
|
|
{
|
|
|
|
|
str.append(QString("%1 ").arg(*(char*)(jter->data().data + i)));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if(jter->data().elemSize() == 2)
|
|
|
|
|
{
|
|
|
|
|
for(unsigned int i=0; i<jter->data().total() * jter->data().elemSize(); i+=jter->data().elemSize())
|
|
|
|
|
{
|
|
|
|
|
str.append(QString("%1 ").arg(*(short*)(jter->data().data + i)));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if(jter->data().elemSize() == 4)
|
|
|
|
|
{
|
|
|
|
|
for(unsigned int i=0; i<jter->data().total() * jter->data().elemSize(); i+=jter->data().elemSize())
|
|
|
|
|
{
|
|
|
|
|
if(jter->data().type() & CV_32F)
|
|
|
|
|
{
|
|
|
|
|
str.append(QString("%1 ").arg(*(float*)(jter->data().data + i)));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
str.append(QString("%1 ").arg(*(int*)(jter->data().data + i)));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
2012-03-03 01:46:30 +00:00
|
|
|
{
|
2012-06-24 17:19:34 +00:00
|
|
|
UERROR("not handled element size %d", jter->data().elemSize());
|
|
|
|
|
break;
|
2012-03-03 01:46:30 +00:00
|
|
|
}
|
2012-06-24 17:19:34 +00:00
|
|
|
if(j+1 < actuators.size())
|
2012-03-03 01:46:30 +00:00
|
|
|
{
|
|
|
|
|
str.append(QString("\n"));
|
|
|
|
|
}
|
|
|
|
|
++j;
|
|
|
|
|
}
|
|
|
|
|
if(str.size())
|
|
|
|
|
{
|
2012-06-24 17:19:34 +00:00
|
|
|
labelActions->setText(str);
|
2012-03-03 01:46:30 +00:00
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// loops
|
|
|
|
|
std::set<int> parents;
|
|
|
|
|
std::set<int> children;
|
|
|
|
|
memory_->getLoopClosureIds(id, parents, children, true);
|
|
|
|
|
if(parents.size())
|
|
|
|
|
{
|
|
|
|
|
QString str;
|
|
|
|
|
for(std::set<int>::iterator iter=parents.begin(); iter!=parents.end(); ++iter)
|
|
|
|
|
{
|
|
|
|
|
str.append(QString("%1 ").arg(*iter));
|
|
|
|
|
}
|
2012-06-24 17:19:34 +00:00
|
|
|
labelParents->setText(str);
|
2012-03-03 01:46:30 +00:00
|
|
|
}
|
|
|
|
|
if(children.size())
|
|
|
|
|
{
|
|
|
|
|
QString str;
|
|
|
|
|
for(std::set<int>::iterator iter=children.begin(); iter!=children.end(); ++iter)
|
|
|
|
|
{
|
|
|
|
|
str.append(QString("%1 ").arg(*iter));
|
|
|
|
|
}
|
2012-06-24 17:19:34 +00:00
|
|
|
labelChildren->setText(str);
|
2012-03-03 01:46:30 +00:00
|
|
|
}
|
2011-06-05 14:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
2012-06-24 17:19:34 +00:00
|
|
|
labelId->setText(QString::number(id));
|
|
|
|
|
view->fitInView(view->scene()->itemsBoundingRect(), Qt::KeepAspectRatio);
|
2011-06-05 14:45:39 +00:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ULOGGER_ERROR("Slider index out of range ?");
|
|
|
|
|
}
|
2012-06-24 17:19:34 +00:00
|
|
|
UINFO("Time = %fs", timer.ticks());
|
2011-06-05 14:45:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MainWindow::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 MainWindow::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 ?");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-06-24 17:19:34 +00:00
|
|
|
QImage MainWindow::ipl2QImage(const IplImage *newImage)
|
2011-06-05 14:45:39 +00:00
|
|
|
{
|
|
|
|
|
QImage qtemp;
|
|
|
|
|
if (newImage && newImage->depth == IPL_DEPTH_8U && cvGetSize(newImage).width>0)
|
|
|
|
|
{
|
|
|
|
|
int x;
|
|
|
|
|
int y;
|
|
|
|
|
char* data = newImage->imageData;
|
|
|
|
|
|
|
|
|
|
qtemp= QImage(newImage->width, newImage->height,QImage::Format_RGB32 );
|
|
|
|
|
for( y = 0; y < newImage->height; y++, data +=newImage->widthStep )
|
|
|
|
|
{
|
|
|
|
|
for( x = 0; x < newImage->width; x++)
|
|
|
|
|
{
|
|
|
|
|
uint *p = (uint*)qtemp.scanLine (y) + x;
|
|
|
|
|
*p = qRgb(data[x * newImage->nChannels+2], data[x * newImage->nChannels+1],data[x * newImage->nChannels]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ULOGGER_ERROR("Wrong IplImage format");
|
|
|
|
|
}
|
|
|
|
|
return qtemp;
|
|
|
|
|
}
|