latest version v1.9 - last update 10 Apr 2010 |
00001 /* 00002 * Copyright (C) 1998, 1999, 2000, 2001 00003 * Lehrstuhl fuer Technische Informatik, RWTH-Aachen, Germany 00004 * 00005 * This file is part of the LTI-Computer Vision Library (LTI-Lib) 00006 * 00007 * The LTI-Lib is free software; you can redistribute it and/or 00008 * modify it under the terms of the GNU Lesser General Public License (LGPL) 00009 * as published by the Free Software Foundation; either version 2.1 of 00010 * the License, or (at your option) any later version. 00011 * 00012 * The LTI-Lib is distributed in the hope that it will be 00013 * useful, but WITHOUT ANY WARRANTY; without even the implied warranty 00014 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 * GNU Lesser General Public License for more details. 00016 * 00017 * You should have received a copy of the GNU Lesser General Public 00018 * License along with the LTI-Lib; see the file LICENSE. If 00019 * not, write to the Free Software Foundation, Inc., 59 Temple Place - 00020 * Suite 330, Boston, MA 02111-1307, USA. 00021 */ 00022 00023 #ifndef _LTI_NEW_FUNCTORS 00024 #define _LTI_NEW_FUNCTORS 00025 00026 /** 00027 00028 \page howtonew How to integrate new algorithms to the LTI-Lib. 00029 00030 The simplest way to integrate new algorithms to the LTI-Lib makes use 00031 of the functor template files and the 00032 <a HREF="http://www.perl.org">PERL</a>-Script <code>ltiGenerator</code> 00033 in directory <code>ltilib/tools/perl</code>. 00034 00035 Just edit the file <code>tools/perl/ltiTemplateValues.txt</code> and 00036 set the values as described in that file. Then call the 00037 <code>ltiGenerator</code> script. If you use no parameters, the 00038 resulting files will be created in the same directory as the PERL 00039 script (<code>tools/perl/</code>). 00040 00041 In the resulting files, you can search for "TODO" to find out what is 00042 still to be done! 00043 00044 And don't forget to write documentation in your code using the 00045 <A HREF="http://www.doxygen.org/index.html">doxygen</A> 00046 style! 00047 00048 */ 00049 00050 #endif 00051