aboutsummaryrefslogtreecommitdiffstats
path: root/meowpp/gra/FeaturePointsDetector.h
diff options
context:
space:
mode:
authorcathook <b01902109@csie.ntu.edu.tw>2014-09-24 13:37:42 +0800
committercathook <b01902109@csie.ntu.edu.tw>2014-09-29 16:55:57 +0800
commit8b76fbb408f8eedab24195655c45c891af01eaab (patch)
tree414d7fc87885cb77e181a3ab99e334b837621036 /meowpp/gra/FeaturePointsDetector.h
parentef9af0d577c3a6b5d11fdeed7a9149d09973171b (diff)
downloadmeow-8b76fbb408f8eedab24195655c45c891af01eaab.tar
meow-8b76fbb408f8eedab24195655c45c891af01eaab.tar.gz
meow-8b76fbb408f8eedab24195655c45c891af01eaab.tar.bz2
meow-8b76fbb408f8eedab24195655c45c891af01eaab.tar.lz
meow-8b76fbb408f8eedab24195655c45c891af01eaab.tar.xz
meow-8b76fbb408f8eedab24195655c45c891af01eaab.tar.zst
meow-8b76fbb408f8eedab24195655c45c891af01eaab.zip
Big change, detail see README.
Diffstat (limited to 'meowpp/gra/FeaturePointsDetector.h')
-rw-r--r--meowpp/gra/FeaturePointsDetector.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/meowpp/gra/FeaturePointsDetector.h b/meowpp/gra/FeaturePointsDetector.h
deleted file mode 100644
index fad051e..0000000
--- a/meowpp/gra/FeaturePointsDetector.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef gra_FeaturePointsDetector_H__
-#define gra_FeaturePointsDetector_H__
-
-#include "../oo/ObjBase.h"
-
-#include "FeaturePoint.h"
-#include "Bitmap.h"
-
-#include <vector>
-
-namespace meow {
-
-template <class Pixel, class MyFP = FeaturePoint<double, double> >
-class FeaturePointsDetector: public ObjBase {
-protected:
- FeaturePointsDetector() { }
-public:
- virtual ~FeaturePointsDetector() { }
-
- virtual std::vector<MyFP> detect(Bitmap<Pixel> const& bmp) const = 0;
-};
-
-} // meow
-
-#endif // gra_FeaturePointsDetector_H__