1234567891011121314151617181920212223242526272829303132333435363738 |
- #ifndef POSTSEMSEGINCLUDE
- #define POSTSEMSEGINCLUDE
- #include "core/image/MultiChannelImageT.h"
- namespace OBJREC
- {
- class PostSemSeg
- {
- protected:
- public:
-
- PostSemSeg();
-
- virtual ~PostSemSeg();
- virtual void postprocess ( NICE::Image & result, NICE::MultiChannelImageT<double> & probabilities ) = 0;
- };
- }
- #endif
|