Added a way to sort (with a prefix number) parameters in toolbox. Can now switch between nearest neighbor strategies (kd-trees, k-means, linear). Added parameters for all FLANN nearest neighbor approaches. Added likelihood plot (including UPlot from UtiLite library and PdfPlot from RTAB-Map library). Added general parameter "MirrorView". Added general parameter "InvertedSearch" to create the vocabulary from objects descriptor instead of the scene descriptors. We can then compute likelihood of the current scene with all other objects (or another scenes). Fixed a crash (in AddObjectDialog) when selecting outside the image. Added OpenCV version used in AboutDialog. git-svn-id: http://find-object.googlecode.com/svn/trunk/find_object@109 620bd6b2-0a58-f614-fd9a-1bd335dccda9
23 lines
454 B
C++
23 lines
454 B
C++
/*
|
|
* Copyright (C) 2011, Mathieu Labbe - IntRoLab - Universite de Sherbrooke
|
|
*/
|
|
|
|
#include "AboutDialog.h"
|
|
#include "ui_aboutDialog.h"
|
|
#include <opencv2/core/version.hpp>
|
|
|
|
AboutDialog::AboutDialog(QWidget * parent) :
|
|
QDialog(parent)
|
|
{
|
|
ui_ = new Ui_aboutDialog();
|
|
ui_->setupUi(this);
|
|
ui_->label_version->setText(PROJECT_VERSION);
|
|
ui_->label_version_opencv->setText(CV_VERSION);
|
|
}
|
|
|
|
AboutDialog::~AboutDialog()
|
|
{
|
|
delete ui_;
|
|
}
|
|
|