www.pudn.com > firev0.01.rar > distances.hpp
/* This file is part of the FIRE -- Flexible Image Retrieval System FIRE is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. FIRE 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 FIRE; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /** * @file distances.hpp * @author Thomas Deselaers * @date Mon Jun 23 18:56:25 2003 * * @brief Only a shortcut for not having to change to many files if I * implement a new distance function. * * */ #ifndef __distances_hpp #define __distances_hpp #include "basedist.hpp" #include "euclideandist.hpp" #include "jensenshannondivergence.hpp" #include "kullbachleiblerdivergence.hpp" #include "chisquaredistance.hpp" #include "histogramintersection.hpp" #include "emdistance.hpp" #include "timeshiftdist.hpp" #include "timeshiftdistl1.hpp" #include "relativedeviation.hpp" #include "relativebindeviation.hpp" #include "regiondist.hpp" #include "irm.hpp" #include "localfeaturedistance.hpp" #include "tangentdistance.hpp" #include "histotangentdist.hpp" #include "l1distance.hpp" #include "fidelity.hpp" #include "oneminusfidelity.hpp" #include "sqrtoneminusfidelity.hpp" #include "log2minusfidelity.hpp" #include "arccosfidelity.hpp" #include "sinoneminusfidelity.hpp" #include "globallocalfeaturedistance.hpp" #include "idmdistance.hpp" #include "idmdistancesobel.hpp" #include "regiondistv2.hpp" #include "crosscorrelation.hpp" #include "crosstd.hpp" #endif