git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@110 620bd6b2-0a58-f614-fd9a-1bd335dccda9
1139 lines
35 KiB
C++
1139 lines
35 KiB
C++
/*
|
|
* Copyright (C) 2011, Mathieu Labbe - IntRoLab - Universite de Sherbrooke
|
|
*/
|
|
|
|
#include "MainWindow.h"
|
|
#include "AddObjectDialog.h"
|
|
#include "ui_mainWindow.h"
|
|
#include "QtOpenCV.h"
|
|
#include "KeypointItem.h"
|
|
#include "ObjWidget.h"
|
|
#include "Camera.h"
|
|
#include "Settings.h"
|
|
#include "ParametersToolBox.h"
|
|
#include "AboutDialog.h"
|
|
#include "rtabmap/PdfPlot.h"
|
|
|
|
#include <iostream>
|
|
#include <stdio.h>
|
|
|
|
#include "opencv2/calib3d/calib3d.hpp"
|
|
|
|
#include <QtCore/QTextStream>
|
|
#include <QtCore/QFile>
|
|
#include <QtCore/QBuffer>
|
|
|
|
#include <QtGui/QFileDialog>
|
|
#include <QtGui/QMessageBox>
|
|
#include <QtGui/QGraphicsScene>
|
|
#include <QtGui/QGraphicsRectItem>
|
|
#include <QtGui/QSpinBox>
|
|
#include <QtGui/QStatusBar>
|
|
#include <QtGui/QProgressDialog>
|
|
#include <QtGui/QCloseEvent>
|
|
#include <QtGui/QCheckBox>
|
|
|
|
#include "utilite/UDirectory.h"
|
|
|
|
// Camera ownership transferred
|
|
MainWindow::MainWindow(Camera * camera, QWidget * parent) :
|
|
QMainWindow(parent),
|
|
camera_(camera),
|
|
likelihoodCurve_(0),
|
|
lowestRefreshRate_(99),
|
|
objectsModified_(false)
|
|
{
|
|
ui_ = new Ui_mainWindow();
|
|
ui_->setupUi(this);
|
|
aboutDialog_ = new AboutDialog(this);
|
|
this->setStatusBar(new QStatusBar());
|
|
|
|
likelihoodCurve_ = new rtabmap::PdfPlotCurve("Likelihood", &imagesMap_);
|
|
ui_->likelihoodPlot->addCurve(likelihoodCurve_); // ownership transfered
|
|
ui_->likelihoodPlot->setGraphicsView(true);
|
|
|
|
if(!camera_)
|
|
{
|
|
camera_ = new Camera(this);
|
|
}
|
|
else
|
|
{
|
|
camera_->setParent(this);
|
|
}
|
|
|
|
ui_->dockWidget_parameters->setVisible(false);
|
|
ui_->dockWidget_plot->setVisible(false);
|
|
ui_->widget_controls->setVisible(false);
|
|
|
|
QByteArray geometry;
|
|
QByteArray state;
|
|
Settings::loadSettings(Settings::iniDefaultPath(), &geometry, &state);
|
|
this->restoreGeometry(geometry);
|
|
this->restoreState(state);
|
|
|
|
ui_->toolBox->setupUi();
|
|
connect((QDoubleSpinBox*)ui_->toolBox->getParameterWidget(Settings::kCamera_4imageRate()),
|
|
SIGNAL(editingFinished()),
|
|
camera_,
|
|
SLOT(updateImageRate()));
|
|
ui_->menuView->addAction(ui_->dockWidget_parameters->toggleViewAction());
|
|
ui_->menuView->addAction(ui_->dockWidget_objects->toggleViewAction());
|
|
ui_->menuView->addAction(ui_->dockWidget_plot->toggleViewAction());
|
|
connect(ui_->toolBox, SIGNAL(parametersChanged()), this, SLOT(notifyParametersChanged()));
|
|
|
|
ui_->imageView_source->setGraphicsViewMode(false);
|
|
ui_->imageView_source->setTextLabel(tr("Press \"space\" to start camera..."));
|
|
ui_->imageView_source->setMirrorView(Settings::getGeneral_mirrorView());
|
|
connect((QCheckBox*)ui_->toolBox->getParameterWidget(Settings::kGeneral_mirrorView()),
|
|
SIGNAL(stateChanged(int)),
|
|
this,
|
|
SLOT(updateMirrorView()));
|
|
|
|
ui_->widget_controls->setVisible(Settings::getGeneral_controlsShown());
|
|
connect((QCheckBox*)ui_->toolBox->getParameterWidget(Settings::kGeneral_controlsShown()),
|
|
SIGNAL(stateChanged(int)),
|
|
this,
|
|
SLOT(showHideControls()));
|
|
|
|
//buttons
|
|
connect(ui_->pushButton_restoreDefaults, SIGNAL(clicked()), ui_->toolBox, SLOT(resetCurrentPage()));
|
|
connect(ui_->pushButton_updateObjects, SIGNAL(clicked()), this, SLOT(updateObjects()));
|
|
connect(ui_->horizontalSlider_objectsSize, SIGNAL(valueChanged(int)), this, SLOT(updateObjectsSize()));
|
|
|
|
ui_->actionStop_camera->setEnabled(false);
|
|
ui_->actionPause_camera->setEnabled(false);
|
|
ui_->actionSave_objects->setEnabled(false);
|
|
|
|
// Actions
|
|
connect(ui_->actionAdd_object_from_scene, SIGNAL(triggered()), this, SLOT(addObjectFromScene()));
|
|
connect(ui_->actionAdd_objects_from_files, SIGNAL(triggered()), this, SLOT(addObjectsFromFiles()));
|
|
connect(ui_->actionLoad_scene_from_file, SIGNAL(triggered()), this, SLOT(loadSceneFromFile()));
|
|
connect(ui_->actionStart_camera, SIGNAL(triggered()), this, SLOT(startProcessing()));
|
|
connect(ui_->actionStop_camera, SIGNAL(triggered()), this, SLOT(stopProcessing()));
|
|
connect(ui_->actionPause_camera, SIGNAL(triggered()), this, SLOT(pauseProcessing()));
|
|
connect(ui_->actionExit, SIGNAL(triggered()), this, SLOT(close()));
|
|
connect(ui_->actionSave_objects, SIGNAL(triggered()), this, SLOT(saveObjects()));
|
|
connect(ui_->actionLoad_objects, SIGNAL(triggered()), this, SLOT(loadObjects()));
|
|
connect(ui_->actionCamera_from_video_file, SIGNAL(triggered()), this, SLOT(setupCameraFromVideoFile()));
|
|
connect(ui_->actionCamera_from_directory_of_images, SIGNAL(triggered()), this, SLOT(setupCameraFromImagesDirectory()));
|
|
connect(ui_->actionAbout, SIGNAL(triggered()), aboutDialog_ , SLOT(exec()));
|
|
connect(ui_->actionRestore_all_default_settings, SIGNAL(triggered()), ui_->toolBox, SLOT(resetAllPages()));
|
|
connect(ui_->actionRemove_all_objects, SIGNAL(triggered()), this, SLOT(removeAllObjects()));
|
|
|
|
connect(ui_->pushButton_play, SIGNAL(clicked()), this, SLOT(startProcessing()));
|
|
connect(ui_->pushButton_stop, SIGNAL(clicked()), this, SLOT(stopProcessing()));
|
|
connect(ui_->pushButton_pause, SIGNAL(clicked()), this, SLOT(pauseProcessing()));
|
|
connect(ui_->horizontalSlider_frames, SIGNAL(valueChanged(int)), this, SLOT(moveCameraFrame(int)));
|
|
connect(ui_->horizontalSlider_frames, SIGNAL(valueChanged(int)), ui_->label_frame, SLOT(setNum(int)));
|
|
ui_->pushButton_play->setVisible(true);
|
|
ui_->pushButton_pause->setVisible(false);
|
|
ui_->pushButton_stop->setEnabled(true);
|
|
ui_->horizontalSlider_frames->setEnabled(false);
|
|
|
|
ui_->objects_area->addAction(ui_->actionAdd_object_from_scene);
|
|
ui_->objects_area->addAction(ui_->actionAdd_objects_from_files);
|
|
ui_->objects_area->setContextMenuPolicy(Qt::ActionsContextMenu);
|
|
|
|
ui_->actionStart_camera->setShortcut(Qt::Key_Space);
|
|
ui_->actionPause_camera->setShortcut(Qt::Key_Space);
|
|
|
|
ui_->actionCamera_from_video_file->setChecked(!Settings::getCamera_5mediaPath().isEmpty() && !UDirectory::exists(Settings::getCamera_5mediaPath().toStdString()));
|
|
ui_->actionCamera_from_directory_of_images->setChecked(!Settings::getCamera_5mediaPath().isEmpty() && UDirectory::exists(Settings::getCamera_5mediaPath().toStdString()));
|
|
|
|
if(Settings::getGeneral_autoStartCamera())
|
|
{
|
|
// Set 1 msec to see state on the status bar.
|
|
QTimer::singleShot(1, this, SLOT(startProcessing()));
|
|
}
|
|
}
|
|
|
|
MainWindow::~MainWindow()
|
|
{
|
|
disconnect(camera_, SIGNAL(imageReceived(const cv::Mat &)), this, SLOT(update(const cv::Mat &)));
|
|
camera_->stop();
|
|
objectsDescriptors_ = cv::Mat();
|
|
qDeleteAll(objects_.begin(), objects_.end());
|
|
objects_.clear();
|
|
delete ui_;
|
|
}
|
|
|
|
void MainWindow::closeEvent(QCloseEvent * event)
|
|
{
|
|
bool quit = true;
|
|
this->stopProcessing();
|
|
if(objectsModified_ && this->isVisible() && objects_.size())
|
|
{
|
|
int ret = QMessageBox::question(this, tr("Save new objects"), tr("Do you want to save added objects?"), QMessageBox::Yes | QMessageBox::No | QMessageBox::Cancel);
|
|
switch(ret)
|
|
{
|
|
case QMessageBox::Yes:
|
|
quit = this->saveObjects();
|
|
break;
|
|
case QMessageBox::Cancel:
|
|
quit = false;
|
|
break;
|
|
case QMessageBox::No:
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
if(quit)
|
|
{
|
|
Settings::saveSettings(Settings::iniDefaultPath(), this->saveGeometry(), this->saveState());
|
|
event->accept();
|
|
}
|
|
else
|
|
{
|
|
event->ignore();
|
|
}
|
|
}
|
|
|
|
ParametersToolBox * MainWindow::parametersToolBox() const
|
|
{
|
|
return ui_->toolBox;
|
|
}
|
|
|
|
void MainWindow::setSourceImageText(const QString & text)
|
|
{
|
|
ui_->imageView_source->setTextLabel(text);
|
|
}
|
|
|
|
int MainWindow::loadObjects(const QString & dirPath)
|
|
{
|
|
int loadedObjects = 0;
|
|
QDir dir(dirPath);
|
|
if(dir.exists())
|
|
{
|
|
QStringList filters = Settings::getGeneral_imageFormats().split(' ');
|
|
QFileInfoList list = dir.entryInfoList(filters, QDir::Files, QDir::Name);
|
|
for(int i=0; i<list.size(); ++i)
|
|
{
|
|
this->addObjectFromFile(list.at(i).filePath());
|
|
}
|
|
if(list.size())
|
|
{
|
|
this->updateObjects();
|
|
}
|
|
loadedObjects = list.size();
|
|
}
|
|
return loadedObjects;
|
|
}
|
|
|
|
void MainWindow::saveObjects(const QString & dirPath)
|
|
{
|
|
QDir dir(dirPath);
|
|
if(dir.exists())
|
|
{
|
|
for(int i=0; i<objects_.size(); ++i)
|
|
{
|
|
objects_.at(i)->pixmap().save(QString("%1/%2.bmp").arg(dirPath).arg(objects_.at(i)->id()));
|
|
}
|
|
}
|
|
}
|
|
|
|
void MainWindow::loadObjects()
|
|
{
|
|
QString dirPath = QFileDialog::getExistingDirectory(this, tr("Loading objects... Select a directory."), Settings::workingDirectory());
|
|
if(!dirPath.isEmpty())
|
|
{
|
|
loadObjects(dirPath);
|
|
}
|
|
}
|
|
bool MainWindow::saveObjects()
|
|
{
|
|
QString dirPath = QFileDialog::getExistingDirectory(this, tr("Saving objects... Select a directory."), Settings::workingDirectory());
|
|
if(!dirPath.isEmpty())
|
|
{
|
|
saveObjects(dirPath);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void MainWindow::removeObject(ObjWidget * object)
|
|
{
|
|
if(object)
|
|
{
|
|
objects_.removeOne(object);
|
|
object->deleteLater();
|
|
this->updateData();
|
|
if(!camera_->isRunning() && !ui_->imageView_source->cvImage().empty())
|
|
{
|
|
this->update(ui_->imageView_source->cvImage());
|
|
}
|
|
}
|
|
}
|
|
|
|
void MainWindow::removeAllObjects()
|
|
{
|
|
for(int i=0; i<objects_.size(); ++i)
|
|
{
|
|
delete objects_.at(i);
|
|
}
|
|
objects_.clear();
|
|
this->updateData();
|
|
if(!camera_->isRunning() && !ui_->imageView_source->cvImage().empty())
|
|
{
|
|
this->update(ui_->imageView_source->cvImage());
|
|
}
|
|
}
|
|
|
|
void MainWindow::updateObjectsSize()
|
|
{
|
|
for(int i=0; i<objects_.size(); ++i)
|
|
{
|
|
updateObjectSize(objects_[i]);
|
|
}
|
|
}
|
|
|
|
void MainWindow::updateObjectSize(ObjWidget * obj)
|
|
{
|
|
if(obj)
|
|
{
|
|
int value = ui_->horizontalSlider_objectsSize->value();
|
|
if((obj->pixmap().width()*value)/100 > 4 && (obj->pixmap().height()*value)/100 > 4)
|
|
{
|
|
obj->setVisible(true);
|
|
obj->setMinimumSize((obj->pixmap().width()*value)/100, (obj->pixmap().height())*value/100);
|
|
}
|
|
else
|
|
{
|
|
obj->setVisible(false);
|
|
}
|
|
obj->setFeaturesShown(value<=50?false:true);
|
|
}
|
|
}
|
|
|
|
void MainWindow::updateMirrorView()
|
|
{
|
|
bool mirrorView = Settings::getGeneral_mirrorView();
|
|
ui_->imageView_source->setMirrorView(mirrorView);
|
|
for(int i=0; i<objects_.size(); ++i)
|
|
{
|
|
objects_[i]->setMirrorView(mirrorView);
|
|
}
|
|
}
|
|
|
|
void MainWindow::showHideControls()
|
|
{
|
|
ui_->widget_controls->setVisible(Settings::getGeneral_controlsShown());
|
|
}
|
|
|
|
void MainWindow::addObjectFromScene()
|
|
{
|
|
disconnect(camera_, SIGNAL(imageReceived(const cv::Mat &)), this, SLOT(update(const cv::Mat &)));
|
|
AddObjectDialog * dialog;
|
|
bool resumeCamera = camera_->isRunning();
|
|
if(!ui_->actionStart_camera->isEnabled() || ui_->imageView_source->cvImage().empty())
|
|
{
|
|
dialog = new AddObjectDialog(camera_, cv::Mat(), ui_->imageView_source->isMirrorView(), this);
|
|
}
|
|
else
|
|
{
|
|
dialog = new AddObjectDialog(0, ui_->imageView_source->cvImage(), ui_->imageView_source->isMirrorView(), this);
|
|
}
|
|
if(dialog->exec() == QDialog::Accepted)
|
|
{
|
|
ObjWidget * obj = dialog->retrieveObject();
|
|
if(obj)
|
|
{
|
|
objects_.push_back(obj);
|
|
showObject(objects_.last());
|
|
updateData();
|
|
objectsModified_ = true;
|
|
}
|
|
}
|
|
if(resumeCamera || ui_->imageView_source->cvImage().empty())
|
|
{
|
|
this->startProcessing();
|
|
}
|
|
else
|
|
{
|
|
connect(camera_, SIGNAL(imageReceived(const cv::Mat &)), this, SLOT(update(const cv::Mat &)));
|
|
this->update(ui_->imageView_source->cvImage());
|
|
}
|
|
delete dialog;
|
|
}
|
|
|
|
void MainWindow::addObjectsFromFiles()
|
|
{
|
|
QStringList fileNames = QFileDialog::getOpenFileNames(this, tr("Add objects..."), Settings::workingDirectory(), tr("Image Files (%1)").arg(Settings::getGeneral_imageFormats()));
|
|
if(fileNames.size())
|
|
{
|
|
for(int i=0; i<fileNames.size(); ++i)
|
|
{
|
|
this->addObjectFromFile(fileNames.at(i));
|
|
}
|
|
objectsModified_ = true;
|
|
updateObjects();
|
|
}
|
|
}
|
|
|
|
void MainWindow::addObjectFromFile(const QString & filePath)
|
|
{
|
|
printf("Load file %s\n", filePath.toStdString().c_str());
|
|
if(!filePath.isNull())
|
|
{
|
|
cv::Mat img = cv::imread(filePath.toStdString().c_str(), cv::IMREAD_GRAYSCALE);
|
|
if(!img.empty())
|
|
{
|
|
int id = 0;
|
|
QFileInfo file(filePath);
|
|
QStringList list = file.fileName().split('.');
|
|
if(list.size())
|
|
{
|
|
bool ok = false;
|
|
id = list.front().toInt(&ok);
|
|
if(ok)
|
|
{
|
|
for(int i=0; i<objects_.size(); ++i)
|
|
{
|
|
if(objects_.at(i)->id() == id)
|
|
{
|
|
if(this->isVisible())
|
|
{
|
|
QMessageBox::warning(this, tr("Warning"), tr("Object %1 already added, a new ID will be generated.").arg(id));
|
|
}
|
|
else
|
|
{
|
|
printf("WARNING: Object %d already added, a new ID will be generated.", id);
|
|
}
|
|
id = 0;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
id = 0;
|
|
}
|
|
}
|
|
objects_.append(new ObjWidget(id, std::vector<cv::KeyPoint>(), cv::Mat(), img, "", ""));
|
|
this->showObject(objects_.last());
|
|
}
|
|
}
|
|
}
|
|
|
|
void MainWindow::loadSceneFromFile()
|
|
{
|
|
QString fileName = QFileDialog::getOpenFileName(this, tr("Load scene..."), Settings::workingDirectory(), tr("Image Files (%1)").arg(Settings::getGeneral_imageFormats()));
|
|
if(!fileName.isEmpty())
|
|
{
|
|
cv::Mat img = cv::imread(fileName.toStdString().c_str());
|
|
if(!img.empty())
|
|
{
|
|
this->update(img);
|
|
ui_->label_timeRefreshRate->setVisible(false);
|
|
}
|
|
}
|
|
}
|
|
|
|
void MainWindow::setupCameraFromVideoFile()
|
|
{
|
|
if(!ui_->actionCamera_from_video_file->isChecked())
|
|
{
|
|
Settings::setCamera_5mediaPath("");
|
|
ui_->toolBox->updateParameter(Settings::kCamera_5mediaPath());
|
|
}
|
|
else
|
|
{
|
|
QString fileName = QFileDialog::getOpenFileName(this, tr("Setup camera from video file..."), Settings::workingDirectory(), tr("Video Files (%1)").arg(Settings::getGeneral_videoFormats()));
|
|
if(!fileName.isEmpty())
|
|
{
|
|
Settings::setCamera_5mediaPath(fileName);
|
|
ui_->toolBox->updateParameter(Settings::kCamera_5mediaPath());
|
|
if(camera_->isRunning())
|
|
{
|
|
this->stopProcessing();
|
|
this->startProcessing();
|
|
}
|
|
Settings::setGeneral_controlsShown(true);
|
|
ui_->toolBox->updateParameter(Settings::kGeneral_controlsShown());
|
|
}
|
|
}
|
|
ui_->actionCamera_from_video_file->setChecked(!Settings::getCamera_5mediaPath().isEmpty());
|
|
ui_->actionCamera_from_directory_of_images->setChecked(false);
|
|
}
|
|
|
|
void MainWindow::setupCameraFromImagesDirectory()
|
|
{
|
|
if(!ui_->actionCamera_from_directory_of_images->isChecked())
|
|
{
|
|
Settings::setCamera_5mediaPath("");
|
|
ui_->toolBox->updateParameter(Settings::kCamera_5mediaPath());
|
|
}
|
|
else
|
|
{
|
|
QString directory = QFileDialog::getExistingDirectory(this, tr("Setup camera from directory of images..."), Settings::workingDirectory());
|
|
if(!directory.isEmpty())
|
|
{
|
|
Settings::setCamera_5mediaPath(directory);
|
|
ui_->toolBox->updateParameter(Settings::kCamera_5mediaPath());
|
|
if(camera_->isRunning())
|
|
{
|
|
this->stopProcessing();
|
|
this->startProcessing();
|
|
}
|
|
Settings::setGeneral_controlsShown(true);
|
|
ui_->toolBox->updateParameter(Settings::kGeneral_controlsShown());
|
|
}
|
|
}
|
|
ui_->actionCamera_from_directory_of_images->setChecked(!Settings::getCamera_5mediaPath().isEmpty());
|
|
ui_->actionCamera_from_video_file->setChecked(false);
|
|
}
|
|
|
|
void MainWindow::showObject(ObjWidget * obj)
|
|
{
|
|
if(obj)
|
|
{
|
|
obj->setGraphicsViewMode(false);
|
|
obj->setMirrorView(ui_->imageView_source->isMirrorView());
|
|
QList<ObjWidget*> objs = ui_->objects_area->findChildren<ObjWidget*>();
|
|
QVBoxLayout * vLayout = new QVBoxLayout();
|
|
int id = Settings::getGeneral_nextObjID();
|
|
if(obj->id() == 0)
|
|
{
|
|
obj->setId(id++);
|
|
Settings::setGeneral_nextObjID(id);
|
|
}
|
|
else if(obj->id() > id)
|
|
{
|
|
id = obj->id()+1;
|
|
Settings::setGeneral_nextObjID(id);
|
|
}
|
|
ui_->toolBox->updateParameter(Settings::kGeneral_nextObjID());
|
|
|
|
QLabel * title = new QLabel(QString("%1 (%2)").arg(obj->id()).arg(QString::number(obj->keypoints().size())), this);
|
|
QLabel * detectorDescriptorType = new QLabel(QString("%1/%2").arg(obj->detectorType()).arg(obj->descriptorType()), this);
|
|
QLabel * detectedLabel = new QLabel(this);
|
|
title->setObjectName(QString("%1title").arg(obj->id()));
|
|
detectorDescriptorType->setObjectName(QString("%1type").arg(obj->id()));
|
|
detectedLabel->setObjectName(QString("%1detection").arg(obj->id()));
|
|
QHBoxLayout * hLayout = new QHBoxLayout();
|
|
hLayout->addWidget(title);
|
|
hLayout->addStretch(1);
|
|
hLayout->addWidget(detectorDescriptorType);
|
|
hLayout->addStretch(1);
|
|
hLayout->addWidget(detectedLabel);
|
|
vLayout->addLayout(hLayout);
|
|
vLayout->addWidget(obj);
|
|
objects_.last()->setDeletable(true);
|
|
connect(obj, SIGNAL(removalTriggered(ObjWidget*)), this, SLOT(removeObject(ObjWidget*)));
|
|
connect(obj, SIGNAL(destroyed(QObject *)), title, SLOT(deleteLater()));
|
|
connect(obj, SIGNAL(destroyed(QObject *)), detectedLabel, SLOT(deleteLater()));
|
|
connect(obj, SIGNAL(destroyed(QObject *)), detectorDescriptorType, SLOT(deleteLater()));
|
|
connect(obj, SIGNAL(destroyed(QObject *)), vLayout, SLOT(deleteLater()));
|
|
ui_->verticalLayout_objects->insertLayout(ui_->verticalLayout_objects->count()-1, vLayout);
|
|
|
|
QByteArray ba;
|
|
QBuffer buffer(&ba);
|
|
buffer.open(QIODevice::WriteOnly);
|
|
obj->pixmap().scaledToWidth(128).save(&buffer, "JPEG"); // writes image into JPEG format
|
|
imagesMap_.insert(obj->id(), ba);
|
|
|
|
updateObjectSize(obj);
|
|
}
|
|
}
|
|
|
|
void MainWindow::updateObjects()
|
|
{
|
|
if(objects_.size())
|
|
{
|
|
for(int i=0; i<objects_.size(); ++i)
|
|
{
|
|
const cv::Mat & img = objects_.at(i)->cvImage();
|
|
cv::FeatureDetector * detector = Settings::createFeaturesDetector();
|
|
std::vector<cv::KeyPoint> keypoints;
|
|
detector->detect(img, keypoints);
|
|
delete detector;
|
|
|
|
cv::Mat descriptors;
|
|
if(keypoints.size())
|
|
{
|
|
cv::DescriptorExtractor * extractor = Settings::createDescriptorsExtractor();
|
|
extractor->compute(img, keypoints, descriptors);
|
|
delete extractor;
|
|
if((int)keypoints.size() != descriptors.rows)
|
|
{
|
|
printf("ERROR : kpt=%d != descriptors=%d\n", (int)keypoints.size(), descriptors.rows);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
printf("WARNING: no features detected in object %d !?!\n", objects_.at(i)->id());
|
|
}
|
|
objects_.at(i)->setData(keypoints, descriptors, img, Settings::currentDetectorType(), Settings::currentDescriptorType());
|
|
|
|
//update object labels
|
|
QLabel * title = qFindChild<QLabel*>(this, QString("%1title").arg(objects_.at(i)->id()));
|
|
title->setText(QString("%1 (%2)").arg(objects_.at(i)->id()).arg(QString::number(objects_.at(i)->keypoints().size())));
|
|
QLabel * detectorDescriptorType = qFindChild<QLabel*>(this, QString("%1type").arg(objects_.at(i)->id()));
|
|
detectorDescriptorType->setText(QString("%1/%2").arg(objects_.at(i)->detectorType()).arg(objects_.at(i)->descriptorType()));
|
|
}
|
|
updateData();
|
|
}
|
|
if(!camera_->isRunning() && !ui_->imageView_source->cvImage().empty())
|
|
{
|
|
this->update(ui_->imageView_source->cvImage());
|
|
}
|
|
this->statusBar()->clearMessage();
|
|
}
|
|
|
|
void MainWindow::updateData()
|
|
{
|
|
if(objects_.size())
|
|
{
|
|
ui_->actionSave_objects->setEnabled(true);
|
|
}
|
|
else
|
|
{
|
|
ui_->actionSave_objects->setEnabled(false);
|
|
}
|
|
|
|
objectsDescriptors_ = cv::Mat();
|
|
dataRange_.clear();
|
|
int count = 0;
|
|
int dim = -1;
|
|
int type = -1;
|
|
// Get the total size and verify descriptors
|
|
for(int i=0; i<objects_.size(); ++i)
|
|
{
|
|
if(!objects_.at(i)->descriptors().empty())
|
|
{
|
|
if(dim >= 0 && objects_.at(i)->descriptors().cols != dim)
|
|
{
|
|
if(this->isVisible())
|
|
{
|
|
QMessageBox::critical(this, tr("Error"), tr("Descriptors of the objects are not all the same size!\nObjects opened must have all the same size (and from the same descriptor extractor)."));
|
|
}
|
|
else
|
|
{
|
|
printf("ERROR: Descriptors of the objects are not all the same size! Objects opened must have all the same size (and from the same descriptor extractor).\n");
|
|
}
|
|
return;
|
|
}
|
|
dim = objects_.at(i)->descriptors().cols;
|
|
if(type >= 0 && objects_.at(i)->descriptors().type() != type)
|
|
{
|
|
if(this->isVisible())
|
|
{
|
|
QMessageBox::critical(this, tr("Error"), tr("Descriptors of the objects are not all the same type!\nObjects opened must have been processed by the same descriptor extractor."));
|
|
}
|
|
else
|
|
{
|
|
printf("ERROR: Descriptors of the objects are not all the same type! Objects opened must have been processed by the same descriptor extractor.\n");
|
|
}
|
|
return;
|
|
}
|
|
type = objects_.at(i)->descriptors().type();
|
|
count += objects_.at(i)->descriptors().rows;
|
|
}
|
|
}
|
|
|
|
// Copy data
|
|
if(count)
|
|
{
|
|
objectsDescriptors_ = cv::Mat(count, dim, type);
|
|
printf("Total descriptors=%d, dim=%d, type=%d\n",count, dim, type);
|
|
int row = 0;
|
|
for(int i=0; i<objects_.size(); ++i)
|
|
{
|
|
cv::Mat dest(objectsDescriptors_, cv::Range(row, row+objects_.at(i)->descriptors().rows));
|
|
objects_.at(i)->descriptors().copyTo(dest);
|
|
row += objects_.at(i)->descriptors().rows;
|
|
// dataRange contains the upper_bound for each
|
|
// object (the last descriptors position in the
|
|
// global object descriptors matrix)
|
|
if(objects_.at(i)->descriptors().rows)
|
|
{
|
|
dataRange_.insert(row-1, i);
|
|
}
|
|
}
|
|
if(Settings::getGeneral_invertedSearch())
|
|
{
|
|
// CREATE INDEX
|
|
QTime time;
|
|
time.start();
|
|
cv::flann::IndexParams * params = Settings::createFlannIndexParams();
|
|
flannIndex_.build(objectsDescriptors_, *params, Settings::getFlannDistanceType());
|
|
delete params;
|
|
ui_->label_timeIndexing->setNum(time.restart());
|
|
}
|
|
}
|
|
}
|
|
|
|
void MainWindow::startProcessing()
|
|
{
|
|
bool updateStatusMessage = this->statusBar()->currentMessage().isEmpty();
|
|
if(updateStatusMessage)
|
|
{
|
|
this->statusBar()->showMessage(tr("Starting camera..."));
|
|
}
|
|
if(camera_->start())
|
|
{
|
|
connect(camera_, SIGNAL(imageReceived(const cv::Mat &)), this, SLOT(update(const cv::Mat &)));
|
|
ui_->actionStop_camera->setEnabled(true);
|
|
ui_->actionPause_camera->setEnabled(true);
|
|
ui_->actionStart_camera->setEnabled(false);
|
|
ui_->actionLoad_scene_from_file->setEnabled(false);
|
|
ui_->label_timeRefreshRate->setVisible(true);
|
|
|
|
//update control bar
|
|
ui_->pushButton_play->setVisible(false);
|
|
ui_->pushButton_pause->setVisible(true);
|
|
ui_->pushButton_stop->setEnabled(true);
|
|
int totalFrames = camera_->getTotalFrames();
|
|
if(totalFrames)
|
|
{
|
|
ui_->label_frame->setVisible(true);
|
|
ui_->horizontalSlider_frames->setEnabled(true);
|
|
ui_->horizontalSlider_frames->setMaximum(totalFrames-1);
|
|
}
|
|
|
|
if(updateStatusMessage)
|
|
{
|
|
this->statusBar()->showMessage(tr("Camera started."), 2000);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if(updateStatusMessage)
|
|
{
|
|
this->statusBar()->clearMessage();
|
|
}
|
|
if(this->isVisible())
|
|
{
|
|
QMessageBox::critical(this, tr("Camera error"), tr("Camera initialization failed! (with device %1)").arg(Settings::getCamera_1deviceId()));
|
|
}
|
|
else
|
|
{
|
|
printf("ERROR: Camera initialization failed! (with device %d)", Settings::getCamera_1deviceId());
|
|
}
|
|
}
|
|
}
|
|
|
|
void MainWindow::stopProcessing()
|
|
{
|
|
if(camera_)
|
|
{
|
|
disconnect(camera_, SIGNAL(imageReceived(const cv::Mat &)), this, SLOT(update(const cv::Mat &)));
|
|
camera_->stop();
|
|
}
|
|
ui_->actionStop_camera->setEnabled(false);
|
|
ui_->actionPause_camera->setEnabled(false);
|
|
ui_->actionStart_camera->setEnabled(true);
|
|
ui_->actionLoad_scene_from_file->setEnabled(true);
|
|
ui_->pushButton_play->setVisible(true);
|
|
ui_->pushButton_pause->setVisible(false);
|
|
ui_->pushButton_stop->setEnabled(false);
|
|
ui_->horizontalSlider_frames->setEnabled(false);
|
|
ui_->horizontalSlider_frames->setValue(0);
|
|
ui_->label_frame->setVisible(false);
|
|
}
|
|
|
|
void MainWindow::pauseProcessing()
|
|
{
|
|
ui_->actionStop_camera->setEnabled(true);
|
|
ui_->actionPause_camera->setEnabled(true);
|
|
ui_->actionStart_camera->setEnabled(false);
|
|
if(camera_->isRunning())
|
|
{
|
|
ui_->pushButton_play->setVisible(true);
|
|
ui_->pushButton_pause->setVisible(false);
|
|
camera_->pause();
|
|
}
|
|
else
|
|
{
|
|
ui_->pushButton_play->setVisible(false);
|
|
ui_->pushButton_pause->setVisible(true);
|
|
camera_->start();
|
|
}
|
|
}
|
|
|
|
void MainWindow::moveCameraFrame(int frame)
|
|
{
|
|
if(ui_->horizontalSlider_frames->isEnabled())
|
|
{
|
|
camera_->moveToFrame(frame);
|
|
if(!camera_->isRunning())
|
|
{
|
|
camera_->takeImage();
|
|
}
|
|
}
|
|
}
|
|
|
|
void MainWindow::update(const cv::Mat & image)
|
|
{
|
|
QTime totalTime;
|
|
totalTime.start();
|
|
// reset objects color
|
|
for(int i=0; i<objects_.size(); ++i)
|
|
{
|
|
objects_[i]->resetKptsColor();
|
|
}
|
|
|
|
if(!image.empty())
|
|
{
|
|
IplImage iplImage = image;
|
|
|
|
QTime time;
|
|
time.start();
|
|
|
|
//Convert to grayscale
|
|
IplImage * imageGrayScale = 0;
|
|
if(iplImage.nChannels != 1 || iplImage.depth != IPL_DEPTH_8U)
|
|
{
|
|
imageGrayScale = cvCreateImage(cvSize(iplImage.width,iplImage.height), IPL_DEPTH_8U, 1);
|
|
cvCvtColor(&iplImage, imageGrayScale, CV_BGR2GRAY);
|
|
}
|
|
cv::Mat img;
|
|
if(imageGrayScale)
|
|
{
|
|
img = cv::Mat(imageGrayScale);
|
|
}
|
|
else
|
|
{
|
|
img = cv::Mat(&iplImage);
|
|
}
|
|
|
|
// EXTRACT KEYPOINTS
|
|
cv::FeatureDetector * detector = Settings::createFeaturesDetector();
|
|
std::vector<cv::KeyPoint> keypoints;
|
|
detector->detect(img, keypoints);
|
|
delete detector;
|
|
ui_->label_timeDetection->setNum(time.restart());
|
|
|
|
cv::Mat descriptors;
|
|
if(keypoints.size())
|
|
{
|
|
// EXTRACT DESCRIPTORS
|
|
cv::DescriptorExtractor * extractor = Settings::createDescriptorsExtractor();
|
|
extractor->compute(img, keypoints, descriptors);
|
|
delete extractor;
|
|
if((int)keypoints.size() != descriptors.rows)
|
|
{
|
|
printf("ERROR : kpt=%d != descriptors=%d\n", (int)keypoints.size(), descriptors.rows);
|
|
}
|
|
if(imageGrayScale)
|
|
{
|
|
cvReleaseImage(&imageGrayScale);
|
|
}
|
|
ui_->label_timeExtraction->setNum(time.restart());
|
|
}
|
|
else
|
|
{
|
|
printf("WARNING: no features detected !?!\n");
|
|
ui_->label_timeExtraction->setNum(0);
|
|
}
|
|
|
|
// COMPARE
|
|
if(!objectsDescriptors_.empty() &&
|
|
keypoints.size() &&
|
|
(Settings::getNearestNeighbor_3nndrRatioUsed() || Settings::getNearestNeighbor_5minDistanceUsed()) &&
|
|
objectsDescriptors_.type() == descriptors.type()) // binary descriptor issue, if the dataTree is not yet updated with modified settings
|
|
{
|
|
if(!Settings::getGeneral_invertedSearch())
|
|
{
|
|
// CREATE INDEX
|
|
cv::flann::IndexParams * params = Settings::createFlannIndexParams();
|
|
flannIndex_.build(descriptors, *params, Settings::getFlannDistanceType());
|
|
delete params;
|
|
ui_->label_timeIndexing->setNum(time.restart());
|
|
}
|
|
|
|
// DO NEAREST NEIGHBOR
|
|
int k = 1;
|
|
if(Settings::getNearestNeighbor_3nndrRatioUsed())
|
|
{
|
|
k = 2;
|
|
}
|
|
cv::Mat results;
|
|
cv::Mat dists;
|
|
if(!Settings::getGeneral_invertedSearch())
|
|
{
|
|
results = cv::Mat(objectsDescriptors_.rows, k, CV_32SC1); // results index
|
|
dists = cv::Mat(objectsDescriptors_.rows, k, CV_32FC1); // Distance results are CV_32FC1
|
|
flannIndex_.knnSearch(objectsDescriptors_, results, dists, k, Settings::getFlannSearchParams() ); // maximum number of leafs checked
|
|
}
|
|
else
|
|
{
|
|
results = cv::Mat(descriptors.rows, k, CV_32SC1); // results index
|
|
dists = cv::Mat(descriptors.rows, k, CV_32FC1); // Distance results are CV_32FC1
|
|
flannIndex_.knnSearch(descriptors, results, dists, k, Settings::getFlannSearchParams() ); // maximum number of leafs checked
|
|
}
|
|
|
|
ui_->label_timeMatching->setNum(time.restart());
|
|
|
|
// PROCESS RESULTS
|
|
if(this->isVisible())
|
|
{
|
|
ui_->imageView_source->setData(keypoints, cv::Mat(), &iplImage, Settings::currentDetectorType(), Settings::currentDescriptorType());
|
|
}
|
|
|
|
QVector<QMultiMap<int, int> > matches(objects_.size()); // Map< ObjectDescriptorIndex, SceneDescriptorIndex >
|
|
QMap<int, QPair<QRect, QTransform> > objectsDetected;
|
|
float minMatchedDistance = -1.0f;
|
|
float maxMatchedDistance = -1.0f;
|
|
// Get all matches for each object
|
|
for(int i=0; i<dists.rows; ++i)
|
|
{
|
|
// Check if this descriptor matches with those of the objects
|
|
bool matched = false;
|
|
|
|
if(Settings::getNearestNeighbor_3nndrRatioUsed() &&
|
|
dists.at<float>(i,0) <= Settings::getNearestNeighbor_4nndrRatio() * dists.at<float>(i,1))
|
|
{
|
|
matched = true;
|
|
}
|
|
if((matched || !Settings::getNearestNeighbor_3nndrRatioUsed()) &&
|
|
Settings::getNearestNeighbor_5minDistanceUsed())
|
|
{
|
|
if(dists.at<float>(i,0) <= Settings::getNearestNeighbor_6minDistance())
|
|
{
|
|
matched = true;
|
|
}
|
|
else
|
|
{
|
|
matched = false;
|
|
}
|
|
}
|
|
if(minMatchedDistance == -1 || minMatchedDistance > dists.at<float>(i,0))
|
|
{
|
|
minMatchedDistance = dists.at<float>(i,0);
|
|
}
|
|
if(maxMatchedDistance == -1 || maxMatchedDistance < dists.at<float>(i,0))
|
|
{
|
|
maxMatchedDistance = dists.at<float>(i,0);
|
|
}
|
|
|
|
if(matched)
|
|
{
|
|
if(Settings::getGeneral_invertedSearch())
|
|
{
|
|
QMap<int, int>::iterator iter = dataRange_.lowerBound(results.at<int>(i,0));
|
|
int objectIndex = iter.value();
|
|
int previousDescriptorIndex = (iter == dataRange_.begin())?0:(--iter).key()+1;
|
|
int objectDescriptorIndex = results.at<int>(i,0) - previousDescriptorIndex;
|
|
matches[objectIndex].insert(objectDescriptorIndex, i);
|
|
}
|
|
else
|
|
{
|
|
QMap<int, int>::iterator iter = dataRange_.lowerBound(i);
|
|
int objectIndex = iter.value();
|
|
int fisrtObjectDescriptorIndex = (iter == dataRange_.begin())?0:(--iter).key()+1;
|
|
int objectDescriptorIndex = i - fisrtObjectDescriptorIndex;
|
|
matches[objectIndex].insert(objectDescriptorIndex, results.at<int>(i,0));
|
|
}
|
|
}
|
|
}
|
|
|
|
QMap<int, float> scores;
|
|
// For each object
|
|
for(int i=0; i<matches.size(); ++i)
|
|
{
|
|
if(Settings::getHomography_homographyComputed())
|
|
{
|
|
// HOMOGRAPHY
|
|
std::vector<cv::Point2f> mpts_1(matches[i].size()), mpts_2(matches[i].size());
|
|
std::vector<int> indexes_1(matches[i].size()), indexes_2(matches[i].size());
|
|
std::vector<uchar> outlier_mask;
|
|
int nColor = i % 11 + 7;
|
|
QColor color((Qt::GlobalColor)(nColor==Qt::yellow?Qt::gray:nColor));
|
|
|
|
int j=0;
|
|
for(QMultiMap<int, int>::iterator iter = matches[i].begin(); iter!=matches[i].end(); ++iter)
|
|
{
|
|
mpts_1[j] = objects_.at(i)->keypoints().at(iter.key()).pt;
|
|
indexes_1[j] = iter.key();
|
|
mpts_2[j] = keypoints.at(iter.value()).pt;
|
|
indexes_2[j] = iter.value();
|
|
++j;
|
|
}
|
|
|
|
QLabel * label = ui_->dockWidget_objects->findChild<QLabel*>(QString("%1detection").arg(objects_.at(i)->id()));
|
|
|
|
if(mpts_1.size() >= Settings::getHomography_minimumInliers())
|
|
{
|
|
cv::Mat H = findHomography(mpts_1,
|
|
mpts_2,
|
|
cv::RANSAC,
|
|
Settings::getHomography_ransacReprojThr(),
|
|
outlier_mask);
|
|
uint inliers=0, outliers=0;
|
|
for(unsigned int k=0; k<mpts_1.size();++k)
|
|
{
|
|
if(outlier_mask.at(k))
|
|
{
|
|
++inliers;
|
|
}
|
|
else
|
|
{
|
|
++outliers;
|
|
}
|
|
}
|
|
|
|
// COLORIZE
|
|
if(inliers >= Settings::getHomography_minimumInliers())
|
|
{
|
|
if(this->isVisible())
|
|
{
|
|
for(unsigned int k=0; k<mpts_1.size();++k)
|
|
{
|
|
if(outlier_mask.at(k))
|
|
{
|
|
objects_.at(i)->setKptColor(indexes_1.at(k), color);
|
|
ui_->imageView_source->setKptColor(indexes_2.at(k), color);
|
|
}
|
|
else
|
|
{
|
|
objects_.at(i)->setKptColor(indexes_1.at(k), QColor(0,0,0));
|
|
}
|
|
}
|
|
}
|
|
|
|
QTransform hTransform(
|
|
H.at<double>(0,0), H.at<double>(1,0), H.at<double>(2,0),
|
|
H.at<double>(0,1), H.at<double>(1,1), H.at<double>(2,1),
|
|
H.at<double>(0,2), H.at<double>(1,2), H.at<double>(2,2));
|
|
|
|
// find center of object
|
|
QRect rect = objects_.at(i)->pixmap().rect();
|
|
objectsDetected.insert(objects_.at(i)->id(), QPair<QRect, QTransform>(rect, hTransform));
|
|
// Example getting the center of the object in the scene using the homography
|
|
//QPoint pos(rect.width()/2, rect.height()/2);
|
|
//hTransform.map(pos)
|
|
|
|
// add rectangle
|
|
if(this->isVisible())
|
|
{
|
|
label->setText(QString("%1 in %2 out").arg(inliers).arg(outliers));
|
|
QPen rectPen(color);
|
|
rectPen.setWidth(4);
|
|
QGraphicsRectItem * rectItem = new QGraphicsRectItem(rect);
|
|
rectItem->setPen(rectPen);
|
|
rectItem->setTransform(hTransform);
|
|
ui_->imageView_source->addRect(rectItem);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
label->setText(QString("Too low inliers (%1 in %2 out)").arg(inliers).arg(outliers));
|
|
}
|
|
}
|
|
else
|
|
{
|
|
label->setText(QString("Too low matches (%1)").arg(mpts_1.size()));
|
|
}
|
|
mpts_1.clear();
|
|
mpts_2.clear();
|
|
indexes_1.clear();
|
|
indexes_2.clear();
|
|
outlier_mask.clear();
|
|
}
|
|
else
|
|
{
|
|
// colorize all matches if homography is not computed
|
|
int nColor = i % 11 + 7;
|
|
QColor color((Qt::GlobalColor)(nColor==Qt::yellow?Qt::gray:nColor));
|
|
for(QMultiMap<int, int>::iterator iter = matches[i].begin(); iter!=matches[i].end(); ++iter)
|
|
{
|
|
printf("iter.key()=%d, iter.value()=%d\n", iter.key(), iter.value());
|
|
printf("objects_[%d].keypoints=%d\n", i, (int)objects_[i]->keypoints().size());
|
|
objects_[i]->setKptColor(iter.key(), color);
|
|
ui_->imageView_source->setKptColor(iter.value(), color);
|
|
}
|
|
QLabel * label = ui_->dockWidget_objects->findChild<QLabel*>(QString("%1detection").arg(objects_.at(i)->id()));
|
|
label->setText(QString("%1 matches").arg(matches[i].size()));
|
|
}
|
|
|
|
scores.insert(objects_.at(i)->id(), matches[i].size());
|
|
}
|
|
|
|
//update likelihood plot
|
|
likelihoodCurve_->setData(scores, QMap<int, int>());
|
|
if(ui_->likelihoodPlot->isVisible())
|
|
{
|
|
ui_->likelihoodPlot->update();
|
|
}
|
|
|
|
ui_->label_minMatchedDistance->setNum(minMatchedDistance);
|
|
ui_->label_maxMatchedDistance->setNum(maxMatchedDistance);
|
|
|
|
if(objectsDetected.size())
|
|
{
|
|
emit objectsFound(objectsDetected);
|
|
}
|
|
}
|
|
else if(this->isVisible())
|
|
{
|
|
ui_->imageView_source->setData(keypoints, cv::Mat(), &iplImage, Settings::currentDetectorType(), Settings::currentDescriptorType());
|
|
}
|
|
|
|
if(this->isVisible())
|
|
{
|
|
//Update object pictures
|
|
for(int i=0; i<objects_.size(); ++i)
|
|
{
|
|
objects_[i]->update();
|
|
}
|
|
}
|
|
|
|
ui_->label_nfeatures->setNum((int)keypoints.size());
|
|
ui_->imageView_source->update();
|
|
ui_->label_timeGui->setNum(time.restart());
|
|
}
|
|
ui_->label_detectorDescriptorType->setText(QString("%1/%2").arg(Settings::currentDetectorType()).arg(Settings::currentDescriptorType()));
|
|
|
|
//update slider
|
|
if(ui_->horizontalSlider_frames->isEnabled())
|
|
{
|
|
ui_->horizontalSlider_frames->blockSignals(true);
|
|
ui_->horizontalSlider_frames->setValue(camera_->getCurrentFrameIndex()-1);
|
|
ui_->label_frame->setNum(camera_->getCurrentFrameIndex()-1);
|
|
ui_->horizontalSlider_frames->blockSignals(false);
|
|
}
|
|
|
|
ui_->label_timeTotal->setNum(totalTime.elapsed());
|
|
int refreshRate = qRound(1000.0f/float(updateRate_.restart()));
|
|
if(refreshRate > 0 && refreshRate < lowestRefreshRate_)
|
|
{
|
|
lowestRefreshRate_ = refreshRate;
|
|
}
|
|
// Refresh the label only after each 1000 ms
|
|
if(refreshStartTime_.elapsed() > 1000)
|
|
{
|
|
if(Settings::getCamera_4imageRate()>0.0)
|
|
{
|
|
ui_->label_timeRefreshRate->setText(QString("(%1 Hz - %2 Hz)").arg(QString::number(Settings::getCamera_4imageRate())).arg(QString::number(lowestRefreshRate_)));
|
|
}
|
|
else
|
|
{
|
|
ui_->label_timeRefreshRate->setText(QString("(%2 Hz)").arg(QString::number(lowestRefreshRate_)));
|
|
}
|
|
lowestRefreshRate_ = 99;
|
|
refreshStartTime_.start();
|
|
}
|
|
}
|
|
|
|
void MainWindow::notifyParametersChanged()
|
|
{
|
|
printf("Parameters changed...\n");
|
|
if(Settings::getGeneral_autoUpdateObjects())
|
|
{
|
|
this->updateObjects();
|
|
}
|
|
else if(objects_.size())
|
|
{
|
|
this->statusBar()->showMessage(tr("A parameter has changed... \"Update objects\" may be required."));
|
|
}
|
|
if(!camera_->isRunning() && !ui_->imageView_source->cvImage().empty())
|
|
{
|
|
this->update(ui_->imageView_source->cvImage());
|
|
ui_->label_timeRefreshRate->setVisible(false);
|
|
}
|
|
|
|
ui_->actionCamera_from_video_file->setChecked(!Settings::getCamera_5mediaPath().isEmpty() && !UDirectory::exists(Settings::getCamera_5mediaPath().toStdString()));
|
|
ui_->actionCamera_from_directory_of_images->setChecked(!Settings::getCamera_5mediaPath().isEmpty() && UDirectory::exists(Settings::getCamera_5mediaPath().toStdString()));
|
|
|
|
}
|