automatic commit
[folded-ctf.git] / image.h
diff --git a/image.h b/image.h
index 5ba20a8..4559d40 100644 (file)
--- a/image.h
+++ b/image.h
 // You should have received a copy of the GNU General Public License     //
 // along with this program. If not, see <http://www.gnu.org/licenses/>.  //
 //                                                                       //
-// Written by Francois Fleuret, (C) IDIAP                                //
+// Written by Francois Fleuret                                           //
+// (C) Idiap Research Institute                                          //
+//                                                                       //
 // Contact <francois.fleuret@idiap.ch> for comments & bug reports        //
 ///////////////////////////////////////////////////////////////////////////
 
+/*
+
+  An implementation of a gray-scale image with a minimum set of
+  methods.
+
+ */
+
 #ifndef IMAGE_H
 #define IMAGE_H
 
@@ -50,7 +59,6 @@ public:
 
   virtual ~Image();
 
-  virtual void crop(int xmin, int ymin, int width, int height);
   virtual void to_rgb(RGBImage *image);
 
   virtual void read(istream *in);