123456789101112131415161718192021222324252627282930313233 |
- /**
- * @file FIHistograms.h
- * @brief calculate histogram
- * @author Erik Rodner
- * @date 07/23/2008
- */
- #ifndef FIHistogramsINCLUDE
- #define FIHistogramsINCLUDE
- #include "vislearning/cbaselib/CachedExample.h"
- namespace OBJREC {
- class FIHistograms {
- public:
- static void buildHSVMap (
- CachedExample *ce,
- int subsamplex,
- int subsampley,
- int numBinsH,
- int numBinsS,
- int numBinsV );
- };
- } // namespace
- #endif
|