ipoint.h 898 B

1234567891011121314151617181920212223242526272829
  1. /***********************************************************
  2. * --- OpenSURF --- *
  3. * This library is distributed under the GNU GPL. Please *
  4. * contact chris.evans@irisys.co.uk for more information. *
  5. * *
  6. * C. Evans, Research Into Robust Visual Features, *
  7. * MSc University of Bristol, 2008. *
  8. * *
  9. ************************************************************/
  10. #ifndef IPOINT_H
  11. #define IPOINT_H
  12. #include <vector>
  13. #include <math.h>
  14. //-------------------------------------------------------
  15. typedef struct{
  16. int x;
  17. int y;
  18. float descriptor[64];
  19. } Ipoint;
  20. //-------------------------------------------------------
  21. typedef std::vector<Ipoint> IpVec;
  22. #endif