Move all classifiers based on other libraries to dedicated namespaces

This commit is contained in:
Simon Giraudot
2019-01-07 11:50:02 +01:00
parent 9e20888127
commit c81fbe4688
21 changed files with 101 additions and 60 deletions
@@ -91,7 +91,7 @@ int main (int argc, char** argv)
std::vector<int> label_indices(pts.size(), -1);
std::cerr << "Using ETHZ Random Forest Classifier" << std::endl;
Classification::ETHZ_random_forest_classifier classifier (labels, features);
Classification::ETHZ::Random_forest_classifier classifier (labels, features);
std::cerr << "Training" << std::endl;
t.reset();