KernelStd.h 545 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /**
  2. * @file KernelStd.h
  3. * @brief Standard kernel
  4. * @author Erik Rodner
  5. * @date 10/24/2007
  6. */
  7. #ifndef KERNELSTDINCLUDE
  8. #define KERNELSTDINCLUDE
  9. #include "core/vector/VectorT.h"
  10. #include "core/vector/MatrixT.h"
  11. #include "Kernel.h"
  12. /** Standard kernel */
  13. namespace OBJREC {
  14. class KernelStd : public Kernel
  15. {
  16. protected:
  17. public:
  18. /** simple constructor */
  19. KernelStd();
  20. /** simple destructor */
  21. virtual ~KernelStd();
  22. double K (const NICE::Vector & x, const NICE::Vector & y) const;
  23. };
  24. } // namespace
  25. #endif