FTransform.cpp 825 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /**
  2. * @file FTransform.cpp
  3. * @brief FTransform Class
  4. * @author Michael Koch
  5. * @date 08/19/2008
  6. */
  7. /** \example testPCA.cpp
  8. * This is an example of how to use an instance of FTransform the Principal Component Analysis (PCA) class.
  9. */
  10. // #ifdef NOVISUAL
  11. // #include <vislearning/nice_nonvis.h>
  12. // #else
  13. // #include <vislearning/nice.h>
  14. // #endif
  15. #include "FTransform.h"
  16. // #include "vislearning/fourier/FourierLibrary.h"
  17. // basic file operations
  18. #include <sstream>
  19. #include <iostream>
  20. #include <fstream>
  21. using namespace OBJREC;
  22. using namespace std;
  23. // refactor-nice.pl: check this substitution
  24. // old: using namespace ice;
  25. using namespace NICE;
  26. FTransform::FTransform()
  27. {
  28. }
  29. FTransform::~FTransform()
  30. {
  31. }