12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #include <iostream>
- #include "vislearning/math/cluster/ClusterAlgorithm.h"
- using namespace OBJREC;
- using namespace std;
- using namespace NICE;
- ClusterAlgorithm::ClusterAlgorithm()
- {
- }
- ClusterAlgorithm::~ClusterAlgorithm()
- {
- }
- void ClusterAlgorithm::initFromConfig ( const NICE::Config * _conf, const std::string & _confSection )
- {
-
- }
- void ClusterAlgorithm::restore ( std::istream & is, int format )
- {
-
- }
- void ClusterAlgorithm::store ( std::ostream & os, int format ) const
- {
-
- }
- void ClusterAlgorithm::clear ()
- {
-
- }
|