12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #ifndef FCBAGSIFTINCLUDE
- #define FCBAGSIFTINCLUDE
- #include "core/vector/VectorT.h"
- #include "core/vector/MatrixT.h"
-
- #include "vislearning/math/cluster/GenerateSignature.h"
- #include "vislearning/features/localfeatures/LocalFeatureRepresentation.h"
- #include "vislearning/features/fbase/FeatureFactory.h"
- namespace OBJREC {
- class FCBagSift : public FeatureFactory
- {
- protected:
- bool display_features;
- GenerateSignature *gs;
- const LocalFeatureRepresentation *lfrep;
- public:
-
-
- FCBagSift( const NICE::Config *conf, const LocalFeatureRepresentation *_lfrep );
-
-
- virtual ~FCBagSift();
-
-
- int convert ( const NICE::Image & img, NICE::Vector & vec );
- };
- }
- #endif
|