00001 /* Copyright (c) 2001 C. Grigorescu S.E. Grigorescu */ 00002 00003 #ifndef FLOAT_IMAGE_H 00004 #define FLOAT_IMAGE_H 00005 00006 #include "Image.h" 00007 00012 class FloatImage : public Image< float > 00013 { 00014 public: 00016 FloatImage(char *name="") : Image< float >(name) {} 00017 00019 FloatImage(int w, int h, char *name="") : Image< float >(w,h,name) {} 00020 00023 FloatImage &operator=(Image< float > &img); 00024 }; 00025 00026 #endif 00027