123456789101112131415161718192021222324252627 |
- /**
- * @file PostSemSeg.cpp
- * @brief abstract interface for post processing steps concerning semantic segmentation routines
- * @author Erik Rodner
- * @date 03/19/2009
- */
- #include <iostream>
- #include "PostSemSeg.h"
- using namespace OBJREC;
- using namespace std;
- using namespace NICE;
- PostSemSeg::PostSemSeg()
- {
- }
- PostSemSeg::~PostSemSeg()
- {
- }
|