Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef RTABMAP_PDFPLOT_H_
00029 #define RTABMAP_PDFPLOT_H_
00030
00031 #include "rtabmap/gui/RtabmapGuiExp.h"
00032
00033 #include <rtabmap/utilite/UPlot.h>
00034 #include "opencv2/opencv.hpp"
00035 #include "rtabmap/core/Signature.h"
00036
00037 namespace rtabmap {
00038
00039 class RTABMAPGUI_EXP PdfPlotItem : public UPlotItem
00040 {
00041 public:
00042 PdfPlotItem(float dataX, float dataY, float width, int childCount = -1);
00043 virtual ~PdfPlotItem();
00044
00045 void setLikelihood(int id, float value, int childCount);
00046 void setSignaturesRef(const QMap<int, Signature> * signaturesRef) {_signaturesRef = signaturesRef;}
00047
00048 float value() const {return this->data().y();}
00049 int id() const {return this->data().x();}
00050
00051 protected:
00052 virtual void showDescription(bool shown);
00053
00054 private:
00055 QGraphicsPixmapItem * _img;
00056 int _childCount;
00057 const QMap<int, Signature> * _signaturesRef;
00058 QGraphicsTextItem * _text;
00059
00060 };
00061
00062 class RTABMAPGUI_EXP PdfPlotCurve : public UPlotCurve
00063 {
00064 Q_OBJECT
00065
00066 public:
00067 PdfPlotCurve(const QString & name, const QMap<int, Signature> * signaturesMapRef, QObject * parent = 0);
00068 virtual ~PdfPlotCurve();
00069
00070 virtual void clear();
00071 void setData(const QMap<int, float> & dataMap, const QMap<int, int> & weightsMap);
00072
00073 private:
00074 const QMap<int, Signature> * _signaturesMapRef;
00075 };
00076
00077 }
00078
00079 #endif