project tests refactoring

This commit is contained in:
Blaise Tine
2021-06-13 17:42:04 -07:00
parent 47c3234659
commit 03406c0a3f
631 changed files with 394471 additions and 653511 deletions

29
tests/opencl/nearn/ipoint.h Executable file
View File

@@ -0,0 +1,29 @@
/***********************************************************
* --- OpenSURF --- *
* This library is distributed under the GNU GPL. Please *
* contact chris.evans@irisys.co.uk for more information. *
* *
* C. Evans, Research Into Robust Visual Features, *
* MSc University of Bristol, 2008. *
* *
************************************************************/
#ifndef IPOINT_H
#define IPOINT_H
#include <vector>
#include <math.h>
//-------------------------------------------------------
typedef struct{
int x;
int y;
float descriptor[64];
} Ipoint;
//-------------------------------------------------------
typedef std::vector<Ipoint> IpVec;
#endif