12345678910111213141516171819202122232425262728 |
- /**
- * @file ClusterAlgorithm.cpp
- * @brief Interface for Cluster-Algorithms
- * @author Erik Rodner
- * @date 10/29/2007
- */
- #include <iostream>
- #include "vislearning/math/cluster/ClusterAlgorithm.h"
- using namespace OBJREC;
- using namespace std;
- // refactor-nice.pl: check this substitution
- // old: using namespace ice;
- using namespace NICE;
- ClusterAlgorithm::ClusterAlgorithm()
- {
- }
- ClusterAlgorithm::~ClusterAlgorithm()
- {
- }
|