PostSemSeg.cpp 348 B

123456789101112131415161718192021222324252627
  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. #include <iostream>
  8. #include "PostSemSeg.h"
  9. using namespace OBJREC;
  10. using namespace std;
  11. using namespace NICE;
  12. PostSemSeg::PostSemSeg()
  13. {
  14. }
  15. PostSemSeg::~PostSemSeg()
  16. {
  17. }