12345678910111213141516171819202122232425262728293031323334 |
- /**
- * @file PSSQueue.cpp
- * @brief application of multiple post semantic segmentation methods
- * @author Erik Rodner
- * @date 03/19/2009
- */
- #ifdef NOVISUAL
- #include <objrec/nice_nonvis.h>
- #else
- #include <objrec/nice.h>
- #endif
- #include <iostream>
- #include "PSSQueue.h"
- using namespace OBJREC;
- using namespace std;
- // refactor-nice.pl: check this substitution
- // old: using namespace ice;
- using namespace NICE;
- PSSQueue::PSSQueue()
- {
- }
- PSSQueue::~PSSQueue()
- {
- }
|