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/>.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef PDFPLOT_H_
|
|
|
|
|
#define PDFPLOT_H_
|
|
|
|
|
|
2012-06-24 17:19:34 +00:00
|
|
|
#include <utilite/UPlot.h>
|
2011-06-05 14:45:39 +00:00
|
|
|
|
|
|
|
|
namespace rtabmap {
|
|
|
|
|
|
2012-06-24 17:19:34 +00:00
|
|
|
class PdfPlotItem : public UPlotItem
|
2011-06-05 14:45:39 +00:00
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
PdfPlotItem(float dataX, float dataY, float width, int childCount = -1);
|
|
|
|
|
virtual ~PdfPlotItem();
|
|
|
|
|
|
|
|
|
|
void setLikelihood(int id, float value, int childCount);
|
|
|
|
|
void setImagesRef(const QMap<int, QByteArray> * imagesRef) {_imagesRef = imagesRef;}
|
|
|
|
|
|
|
|
|
|
float value() const {return this->data().y();}
|
|
|
|
|
int id() const {return this->data().x();}
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
virtual void showDescription(bool shown);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
QGraphicsPixmapItem * _img;
|
|
|
|
|
int _childCount;
|
|
|
|
|
const QMap<int, QByteArray> * _imagesRef;
|
2012-12-11 18:05:05 +00:00
|
|
|
QGraphicsTextItem * _text;
|
2011-06-05 14:45:39 +00:00
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
2012-06-24 17:19:34 +00:00
|
|
|
class PdfPlotCurve : public UPlotCurve
|
2011-06-05 14:45:39 +00:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
PdfPlotCurve(const QString & name, const QMap<int, QByteArray> * imagesMapRef, QObject * parent = 0);
|
|
|
|
|
virtual ~PdfPlotCurve();
|
|
|
|
|
|
|
|
|
|
virtual void clear();
|
2012-12-11 18:05:05 +00:00
|
|
|
void setData(const QMap<int, float> & dataMap, const QMap<int, int> & weightsMap);
|
2011-06-05 14:45:39 +00:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
const QMap<int, QByteArray> * _imagesMapRef;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* PDFPLOT_H_ */
|