~ubuntu-branches/ubuntu/trusty/hugin/trusty-proposed

« back to all changes in this revision

Viewing changes to src/hugin_cpfind/localfeatures/PointMatch.h

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Metzler
  • Date: 2011-01-06 14:28:24 UTC
  • mfrom: (1.1.9 upstream) (0.1.21 experimental)
  • Revision ID: james.westby@ubuntu.com-20110106142824-zn9lxylg5z44dynn
* Drop Cyril Brulebois from Uploaders. Thank you very much for your work.
* Bump package version. (rc3 was re-released as 2010.4.0).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
* Copyright (C) 2007-2008 Anael Orlinski
 
3
*
 
4
* This file is part of Panomatic.
 
5
*
 
6
* Panomatic is free software; you can redistribute it and/or modify
 
7
* it under the terms of the GNU General Public License as published by
 
8
* the Free Software Foundation; either version 2 of the License, or
 
9
* (at your option) any later version.
 
10
 
11
* Panomatic is distributed in the hope that it will be useful,
 
12
* but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
* GNU General Public License for more details.
 
15
 
16
* You should have received a copy of the GNU General Public License
 
17
* along with Panomatic; if not, write to the Free Software
 
18
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
19
*/
 
20
 
 
21
#ifndef __lfeatPointMatch_h
 
22
#define __lfeatPointMatch_h
 
23
 
 
24
#include <boost/shared_ptr.hpp>
 
25
#include <vector>
 
26
 
 
27
#include "KeyPoint.h"
 
28
 
 
29
namespace lfeat
 
30
{
 
31
 
 
32
struct PointMatch
 
33
{
 
34
 
 
35
        PointMatch(KeyPointPtr& aPM1, KeyPointPtr& aPM2) :
 
36
        _img1_x(aPM1->_x), _img1_y(aPM1->_y), _img2_x(aPM2->_x),  _img2_y(aPM2->_y),
 
37
        _img1_kp(aPM1), _img2_kp(aPM2) {};
 
38
        
 
39
        double _img1_x, _img1_y, _img2_x, _img2_y;
 
40
 
 
41
        // hold a reference to original keypoint
 
42
        KeyPointPtr             _img1_kp;
 
43
        KeyPointPtr             _img2_kp;
 
44
 
 
45
        //void print()
 
46
        //{
 
47
        //      std::cout << _img1_x << " " << _img2_x << " " << _img1_y << " " << _img2_y << std::endl;
 
48
        //}
 
49
 
 
50
};
 
51
 
 
52
typedef boost::shared_ptr<PointMatch> PointMatchPtr;
 
53
typedef std::vector<PointMatchPtr> PointMatchVector_t;
 
54
 
 
55
class PointMatchPtrSort
 
56
{
 
57
public: 
 
58
        inline bool operator() (const PointMatchPtr& a, const PointMatchPtr& b) const { 
 
59
                return (a->_img1_kp->_score < b->_img1_kp->_score); 
 
60
        } 
 
61
};
 
62
 
 
63
}
 
64
 
 
65
#endif // __lfeatPointMatch_h