X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=folded-ctf.git;a=blobdiff_plain;f=labelled_image_pool_file.h;h=d1b81de3e6de126ae52445b8237b41f7bc35b322;hp=a46d7816f16404a8cf88a31ddcad2f95fd107b2a;hb=e6dd9046eb73320d6374c92ca53b91f5e167360d;hpb=d922ad61d35e9a6996730bec24b16f8bf7bc426c diff --git a/labelled_image_pool_file.h b/labelled_image_pool_file.h index a46d781..d1b81de 100644 --- a/labelled_image_pool_file.h +++ b/labelled_image_pool_file.h @@ -1,20 +1,32 @@ - -/////////////////////////////////////////////////////////////////////////// -// This program is free software: you can redistribute it and/or modify // -// it under the terms of the version 3 of the GNU General Public License // -// as published by the Free Software Foundation. // -// // -// This program is distributed in the hope that it will be useful, but // -// WITHOUT ANY WARRANTY; without even the implied warranty of // -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // -// General Public License for more details. // -// // -// You should have received a copy of the GNU General Public License // -// along with this program. If not, see . // -// // -// Written by Francois Fleuret, (C) IDIAP // -// Contact for comments & bug reports // -/////////////////////////////////////////////////////////////////////////// +/* + * folded-ctf is an implementation of the folded hierarchy of + * classifiers for object detection, developed by Francois Fleuret + * and Donald Geman. + * + * Copyright (c) 2008 Idiap Research Institute, http://www.idiap.ch/ + * Written by Francois Fleuret + * + * This file is part of folded-ctf. + * + * folded-ctf is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 3 as + * published by the Free Software Foundation. + * + * folded-ctf is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with folded-ctf. If not, see . + * + */ + +/* + + This is a LabelledImagePool that corresponds physically to a file. + + */ #ifndef LABELLED_IMAGE_POOL_FILE_H #define LABELLED_IMAGE_POOL_FILE_H @@ -34,11 +46,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); };