SHOGUN  4.2.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
DenseDistance.h
Go to the documentation of this file.
1 /*
2  * This program is free software; you can redistribute it and/or modify
3  * it under the terms of the GNU General Public License as published by
4  * the Free Software Foundation; either version 3 of the License, or
5  * (at your option) any later version.
6  *
7  * Written (W) 2006-2009 Christian Gehl
8  * Copyright (C) 2006-2009 Fraunhofer Institute FIRST and Max-Planck-Society
9  */
10 
11 #ifndef _DENSEDISTANCE_H___
12 #define _DENSEDISTANCE_H___
13 
14 #include <shogun/lib/config.h>
15 
19 #include <shogun/io/SGIO.h>
20 
21 namespace shogun
22 {
24 template <class ST> class CDenseDistance : public CDistance
25 {
26  public:
29 
36  virtual bool init(CFeatures* l, CFeatures* r);
37 
42  virtual EFeatureClass get_feature_class() { return C_DENSE; }
43 
49 
55  virtual const char* get_name() const {
56  return "DenseDistance"; }
57 
64  virtual EDistanceType get_distance_type()=0;
65 };
66 } // namespace shogun
67 #endif
virtual EFeatureType get_feature_type()
Class Distance, a base class for all the distances used in the Shogun toolbox.
Definition: Distance.h:87
EFeatureClass
shogun feature class
Definition: FeatureTypes.h:38
virtual EFeatureClass get_feature_class()
Definition: DenseDistance.h:42
EDistanceType
Definition: Distance.h:32
EFeatureType
shogun feature type
Definition: FeatureTypes.h:19
virtual EDistanceType get_distance_type()=0
all of classes and functions are contained in the shogun namespace
Definition: class_list.h:18
The class Features is the base class of all feature objects.
Definition: Features.h:68
template class DenseDistance
Definition: DenseDistance.h:24
virtual const char * get_name() const
Definition: DenseDistance.h:55

SHOGUN Machine Learning Toolbox - Documentation