/** * @file KLDistance.h * @brief $\chi^2$ distance measure * @author Erik Rodner * @date 02/19/2008 */ #ifndef KLDistanceINCLUDE #define KLDistanceINCLUDE #include "core/vector/VectorT.h" #include "core/vector/MatrixT.h" #include namespace OBJREC { /** \chi^2 distance measure */ class DeprecatedKLDistance : public NICE::VectorDistance { protected: double doCalculate (const NICE::Vector & x, const NICE::Vector & y) const; public: }; } // namespace #endif