00001 #ifndef __PointCorrector_H__ 00002 #define __PointCorrector_H__ 00003 00004 #include "Vector2.h" 00005 00006 namespace EdgeDetection 00007 { 00008 class PointCorrector 00009 { 00010 public: virtual Vector2 CorrectPoint(Vector2 point) = 0; 00011 }; 00012 }; 00013 00014 #endif