diff options
Diffstat (limited to 'meowpp/gra/FeaturePointsDetector.h')
-rw-r--r-- | meowpp/gra/FeaturePointsDetector.h | 25 |
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__ |