1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #ifndef GSCLUSTERINCLUDE
- #define GSCLUSTERINCLUDE
- #include "core/vector/VectorT.h"
- #include "core/vector/MatrixT.h"
-
- #include "GenerateSignature.h"
- #include "ClusterAlgorithm.h"
- namespace OBJREC {
-
- class GSCluster : public GenerateSignature
- {
- protected:
- int c_no_clusters;
- ClusterAlgorithm *clualg;
- public:
-
-
- GSCluster( const NICE::Config *conf, const std::string & _section = "GSCluster" );
-
-
- virtual ~GSCluster();
-
- void signature ( const NICE::VVector & features,
- NICE::Vector & signature );
- };
- }
- #endif
|