00001
00002
00003
00004
00005
00006
00007 #ifndef POINT_MATCH_TRIPLET_H
00008 #define POINT_MATCH_TRIPLET_H
00009
00010 #include <QPoint>
00011
00013 class PointMatchTriplet
00014 {
00015 public:
00017 PointMatchTriplet(int x,
00018 int y,
00019 double correlation);
00020
00022 bool operator<(const PointMatchTriplet &other) const;
00023
00025 double correlation() const;
00026
00028 QPoint point() const;
00029
00031 int x() const;
00032
00034 int y() const;
00035
00036 private:
00037 PointMatchTriplet();
00038
00039 int m_x;
00040 int m_y;
00041 double m_correlation;
00042 };
00043
00044 #endif // POINT_MATCH_TRIPLET_H