38 #ifndef __usDenseTracker2D_h_
39 #define __usDenseTracker2D_h_
41 #include <visp3/core/vpConfig.h>
42 #include <visp3/core/vpImage.h>
44 #include <visp3/core/vpRectOriented.h>
62 vpImage<unsigned char> &getRegion();
64 vpRectOriented getTarget()
const;
66 vpImage<unsigned char> &getTemplate();
68 void init(
const vpImage<unsigned char> &I,
const vpRectOriented &R);
72 void update(
const vpImage<unsigned char> &I);
75 vpColVector s_desired;
76 vpColVector s_current;
77 vpRectOriented m_target;
78 vpImage<unsigned char> m_template;
79 vpImage<unsigned char> m_region;
80 vpImage<double> m_gradX;
81 vpImage<double> m_gradY;
83 vpMatrix m_LI_inverse;
84 unsigned int m_height;