automatic commit
[folded-ctf.git] / labelled_image_pool_file.h
index a46d781..90a543c 100644 (file)
 // 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        //
 ///////////////////////////////////////////////////////////////////////////
 
+/*
+
+  This is a LabelledImagePool that corresponds physically to a file.
+
+ */
+
 #ifndef LABELLED_IMAGE_POOL_FILE_H
 #define LABELLED_IMAGE_POOL_FILE_H
 
@@ -34,11 +42,7 @@ class LabelledImagePoolFile : public LabelledImagePool {
 public:
   LabelledImagePoolFile(char *file_name);
   virtual ~LabelledImagePoolFile();
-
   virtual int nb_images();
-
-  // grab_image(n) does _NOT_ build the rich structure. One has to call
-  // compute_rich_structure() for that!
   virtual LabelledImage *grab_image(int n_image);
   virtual void release_image(int n_image);
 };