ltiEuclideanSimilarity.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033 #ifndef _LTI_EUCLID_SIMILARITY_H_
00034 #define _LTI_EUCLID_SIMILARITY_H_
00035
00036 #include "ltiSimilarityFunctor.h"
00037
00038 namespace lti {
00039
00040
00041
00042
00043
00044
00045
00046
00047 template <class T>
00048 class euclideanSimilarity : public similarityFunctor<T> {
00049 public:
00050
00051
00052
00053 class parameters : public similarityFunctor<T>::parameters {
00054 public:
00055
00056
00057
00058 enum eEuclideanSimilarityType {
00059 Inverse,
00060
00061
00062 Exponential
00063 };
00064
00065
00066
00067
00068 parameters() : similarityFunctor<T>::parameters() {
00069 rowWise=true;
00070 };
00071
00072
00073
00074
00075
00076 parameters(const parameters& other) {
00077 copy(other);
00078 };
00079
00080
00081
00082
00083 virtual ~parameters() {
00084 };
00085
00086
00087
00088
00089 const char* getTypeName() const {
00090 return "distanceFunctor::parameters";
00091 };
00092
00093
00094
00095
00096
00097
00098 parameters& copy(const parameters& other) {
00099 # ifndef _LTI_MSC_6
00100
00101 similarityFunctor<T>::parameters::copy(other);
00102 # else
00103
00104
00105 similarityFunctor<T>::parameters&
00106 (similarityFunctor<T>::parameters::* p_copy)
00107 (const similarityFunctor<T>::parameters&) =
00108 similarityFunctor<T>::parameters::copy;
00109 (this->*p_copy)(other);
00110 # endif
00111
00112 rowWise=other.rowWise;
00113
00114 return *this;
00115 };
00116
00117
00118
00119
00120 virtual functor::parameters* clone() const {
00121 return new parameters(*this);
00122 };
00123
00124 # ifndef _LTI_MSC_6
00125
00126
00127
00128
00129
00130
00131
00132 bool write(ioHandler& handler,
00133 const bool complete) const
00134 # else
00135
00136
00137
00138
00139
00140
00141
00142 bool writeMS(ioHandler& handler,
00143 const bool complete) const
00144 # endif
00145 {
00146 bool b(true);
00147
00148 if (complete) {
00149 b = b && handler.writeBegin();
00150 }
00151
00152 switch(type) {
00153 case Inverse:
00154 b = b && lti::write(handler, "type", "Inverse");
00155 break;
00156 case Exponential:
00157 b = b && lti::write(handler, "type", "Exponential");
00158 break;
00159 default:
00160 b = b && lti::write(handler, "type", "Inverse");
00161 }
00162
00163 if (complete) {
00164 b = b && handler.writeEnd();
00165 }
00166
00167
00168 # ifndef _LTI_MSC_6
00169
00170
00171 b = b && similarityFunctor<T>::parameters::write(handler,false);
00172 # else
00173 bool (similarityFunctor<T>::parameters::* p_writeMS)(ioHandler&,
00174 const bool) const =
00175 similarityFunctor<T>::parameters::writeMS;
00176 b = b && (this->*p_writeMS)(handler,false);
00177 # endif
00178
00179 return b;
00180 }
00181
00182 # ifdef _LTI_MSC_6
00183
00184
00185
00186
00187
00188
00189
00190 bool write(ioHandler& handler,
00191 const bool complete) const {
00192
00193
00194 return writeMS(handler,complete);
00195 }
00196 # endif
00197
00198
00199 # ifndef _LTI_MSC_6
00200
00201
00202
00203
00204
00205
00206
00207 bool read(ioHandler& handler,
00208 const bool complete)
00209 # else
00210
00211
00212
00213
00214
00215
00216
00217 bool readMS(ioHandler& handler,
00218 const bool complete)
00219 # endif
00220 {
00221 bool b(true);
00222
00223 if (complete) {
00224 b = b && handler.readBegin();
00225 }
00226
00227 std::string str;
00228
00229 b = b && lti::read(handler, "type", str);
00230 if (str == "Exponential") {
00231 type = Exponential;
00232 } else {
00233 type = Inverse;
00234 }
00235
00236 # ifndef _LTI_MSC_6
00237
00238
00239 b = b && similarityFunctor<T>::parameters::read(handler,false);
00240 # else
00241 bool (similarityFunctor<T>::parameters::* p_readMS)(ioHandler&,
00242 const bool) =
00243 similarityFunctor<T>::parameters::readMS;
00244 b = b && (this->*p_readMS)(handler,false);
00245 # endif
00246
00247 if (complete) {
00248 b = b && handler.readEnd();
00249 }
00250
00251 return b;
00252 }
00253
00254 # ifdef _LTI_MSC_6
00255
00256
00257
00258
00259
00260
00261
00262 bool read(ioHandler& handler,
00263 const bool complete) {
00264
00265
00266 return readMS(handler,complete);
00267 }
00268 # endif
00269
00270
00271
00272
00273
00274
00275 eEuclideanSimilarityType type;
00276 };
00277
00278
00279
00280
00281 euclideanSimilarity();
00282
00283
00284
00285
00286
00287 euclideanSimilarity(const euclideanSimilarity<T>& other);
00288
00289
00290
00291
00292 virtual ~euclideanSimilarity();
00293
00294
00295
00296
00297 virtual const char* getTypeName() const;
00298
00299
00300
00301
00302
00303
00304
00305
00306
00307
00308 T apply(const vector<T>& a, const vector<T>& b) const;
00309
00310
00311
00312
00313
00314 T apply(const matrix<T>& a, const matrix<T>& b) const;
00315
00316
00317
00318
00319
00320 vector<T>& apply(const matrix<T>& a,
00321 const vector<T>& b,
00322 vector<T>& dest) const;
00323
00324
00325
00326
00327
00328
00329 euclideanSimilarity& copy(const euclideanSimilarity& other);
00330
00331
00332
00333
00334 virtual functor* clone() const;
00335
00336
00337
00338
00339 const parameters& getParameters() const;
00340
00341
00342 };
00343
00344
00345 }
00346
00347 #include "ltiEuclideanSimilarity_template.h"
00348
00349 #endif