Guest User

Untitled

a guest
Jul 19th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #include "IFeatureExtractor.h"
  2.  
  3. class Extractor : public IFeatureExtractor
  4. {
  5. public:
  6. std::vector<double> getFeature(const cv::Mat& image)
  7. {
  8. return vector<double>();
  9. }
  10. };
Add Comment
Please, Sign In to add comment