00001 /* Copyright (c) 2001 S.E. Grigorescu */ 00002 00003 #ifndef TRANSLATION_H 00004 #define TRANSLATION_H 00005 00006 #include <math.h> 00007 #include "Image.h" 00008 00011 template<class T> void Translate(Image< T >& input, float x, float y, Image< T >& output); 00019 template<class T> void Translate(Image< T >& input, float x, float y); 00027 #endif 00028