/* * 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 . */ #ifndef PDFPLOT_H_ #define PDFPLOT_H_ #include "Plot.h" namespace rtabmap { class PdfPlotItem : public PlotItem { 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 * imagesRef) {_imagesRef = imagesRef;} float value() const {return this->data().y();} int id() const {return this->data().x();} protected: virtual void showDescription(bool shown); private: QGraphicsTextItem * _text; QGraphicsPixmapItem * _img; int _childCount; const QMap * _imagesRef; }; class PdfPlotCurve : public PlotCurve { Q_OBJECT public: PdfPlotCurve(const QString & name, const QMap * imagesMapRef, QObject * parent = 0); virtual ~PdfPlotCurve(); virtual void clear(); void setData(const QMap & dataMap, const QMap & weightsMap, int lastId); private: const QMap * _imagesMapRef; }; } #endif /* PDFPLOT_H_ */