00001
00029 #ifndef DeadReckoning_7x7_h
00030 #define DeadReckoning_7x7_h
00031
00032 #include "DeadReckoning.h"
00033
00035 class DeadReckoning_7x7 : public DeadReckoning {
00036
00037 public:
00038 DeadReckoning_7x7 ( const int xSize, const int ySize,
00039 const bool unload=true )
00040 : DeadReckoning(xSize, ySize, unload)
00041 {
00042 }
00043
00044 void doTransform ( const unsigned char* const I );
00045 private:
00046 void borderCheck ( const unsigned char* const I );
00047 };
00048
00049 #endif
00050
00051