RegressionAlgorithm.cpp 350 B

12345678910111213141516171819202122232425
  1. /**
  2. * @file RegressionAlgorithm.cpp
  3. * @brief interface for a regression algorithm
  4. * @author Erik Rodner
  5. * @date 12/09/2009
  6. */
  7. #include <iostream>
  8. #include "RegressionAlgorithm.h"
  9. using namespace std;
  10. using namespace NICE;
  11. using namespace OBJREC;
  12. RegressionAlgorithm::RegressionAlgorithm()
  13. {
  14. }
  15. RegressionAlgorithm::~RegressionAlgorithm()
  16. {
  17. }