PostSemSeg.cpp 508 B

12345678910111213141516171819202122232425262728293031323334
  1. /**
  2. * @file PostSemSeg.cpp
  3. * @brief abstract interface for post processing steps concerning semantic segmentation routines
  4. * @author Erik Rodner
  5. * @date 03/19/2009
  6. */
  7. #ifdef NOVISUAL
  8. #include <objrec/nice_nonvis.h>
  9. #else
  10. #include <objrec/nice.h>
  11. #endif
  12. #include <iostream>
  13. #include "PostSemSeg.h"
  14. using namespace OBJREC;
  15. using namespace std;
  16. // refactor-nice.pl: check this substitution
  17. // old: using namespace ice;
  18. using namespace NICE;
  19. PostSemSeg::PostSemSeg()
  20. {
  21. }
  22. PostSemSeg::~PostSemSeg()
  23. {
  24. }