#ifndef gra_FeaturePointsDetector_H__ #define gra_FeaturePointsDetector_H__ #include "../oo/ObjBase.h" #include "FeaturePoint.h" #include "Bitmap.h" #include namespace meow { template class FeaturePointsDetector: public ObjBase { protected: FeaturePointsDetector() { } public: virtual ~FeaturePointsDetector() { } virtual std::vector > detect(Bitmap const& bitmap) const = 0; }; } // meow #endif // gra_FeaturePointsDetector_H__