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

« back to all changes in this revision

Viewing changes to src/hugin_cpfind/localfeatures/KeyPointDescriptor.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-2009 Anael Orlinski & Pablo d'Angelo
 
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 __lfeat_keypointdescriptor_h
 
22
#define __lfeat_keypointdescriptor_h
 
23
 
 
24
#include "Image.h"
 
25
#include "KeyPoint.h"
 
26
 
 
27
namespace lfeat {
 
28
 
 
29
/** Abstract base class for all keypoint descriptors */
 
30
class KeyPointDescriptor
 
31
{
 
32
public:
 
33
        virtual void makeDescriptor(KeyPoint& ioKeyPoint) const = 0;
 
34
        virtual int getDescriptorLength() const = 0;
 
35
        virtual void assignOrientation(KeyPoint& ioKeyPoint) const = 0;
 
36
 
 
37
};
 
38
 
 
39
}
 
40
 
 
41
#endif //__lfeat_keypointdescriptor_h