Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #include "lib/config.h"
00012 #include "lib/common.h"
00013 #include "lib/io.h"
00014 #include "distance/ChebyshewMetric.h"
00015 #include "features/Features.h"
00016 #include "features/SimpleFeatures.h"
00017
00018 using namespace shogun;
00019
00020 CChebyshewMetric::CChebyshewMetric()
00021 : CSimpleDistance<float64_t>()
00022 {
00023 }
00024
00025 CChebyshewMetric::CChebyshewMetric(CSimpleFeatures<float64_t>* l, CSimpleFeatures<float64_t>* r)
00026 : CSimpleDistance<float64_t>()
00027 {
00028 init(l, r);
00029 }
00030
00031 CChebyshewMetric::~CChebyshewMetric()
00032 {
00033 cleanup();
00034 }
00035
00036 bool CChebyshewMetric::init(CFeatures* l, CFeatures* r)
00037 {
00038 bool result=CSimpleDistance<float64_t>::init(l,r);
00039
00040 return result;
00041 }
00042
00043 void CChebyshewMetric::cleanup()
00044 {
00045 }
00046
00047 float64_t CChebyshewMetric::compute(int32_t idx_a, int32_t idx_b)
00048 {
00049 int32_t alen, blen;
00050 bool afree, bfree;
00051
00052 float64_t* avec=
00053 ((CSimpleFeatures<float64_t>*) lhs)->get_feature_vector(idx_a, alen, afree);
00054 float64_t* bvec=
00055 ((CSimpleFeatures<float64_t>*) rhs)->get_feature_vector(idx_b, blen, bfree);
00056
00057 ASSERT(alen==blen);
00058
00059 float64_t result=DBL_MIN;
00060
00061 for (int32_t i=0; i<alen; i++)
00062 result=CMath::max(result, fabs(avec[i]-bvec[i]));
00063
00064 ((CSimpleFeatures<float64_t>*) lhs)->free_feature_vector(avec, idx_a, afree);
00065 ((CSimpleFeatures<float64_t>*) rhs)->free_feature_vector(bvec, idx_b, bfree);
00066
00067 return result;
00068 }