-
Notifications
You must be signed in to change notification settings - Fork 37
/
ipoint.h
71 lines (62 loc) · 1.61 KB
/
ipoint.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
* Speeded-Up Robust Features (SURF)
* https://github.com/herbertbay/SURF
*
* Authors: Herbert Bay, Andreas Ess, Geert Willems
* Windows port by Stefan Saur
*
* Copyright (2006): ETH Zurich, Switzerland
* Katholieke Universiteit Leuven, Belgium
* All rights reserved.
*
* For details, see the paper:
* Herbert Bay, Tinne Tuytelaars, Luc Van Gool,
* "SURF: Speeded Up Robust Features"
* Proceedings of the ninth European Conference on Computer Vision, May 2006
*
* Permission to use, copy, modify, and distribute this software and
* its documentation for educational, research, and non-commercial
* purposes, without fee and without a signed licensing agreement, is
* hereby granted, provided that the above copyright notice and this
* paragraph appear in all copies modifications, and distributions.
*
* Any commercial use or any redistribution of this software
* requires a license from one of the above mentioned establishments.
*
* For further details, contact Herbert Bay ([email protected]).
*/
#ifndef IPOINT_H
#define IPOINT_H
#include <stdlib.h>
namespace surf {
class Ipoint {
public:
// Constructor
Ipoint(){
ivec = NULL;
ori = 0.0;
};
// Destructor
~Ipoint(){
if (ivec)
delete [] ivec;
};
// Allocate space
void allocIvec(const int si){
ivec = new double[si];
};
// x, y value of the interest point
double x, y;
// detected scale
double scale;
// strength of the interest point
double strength;
// orientation
double ori;
// sign of Laplacian
int laplace;
// descriptor
double *ivec;
};
}
#endif // IPOINT_H