Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

void Impala::Core::Tracking::Classifier::GetNormalisedObjectVector ( Array::Array2dScalarReal64 *&  vector,
int  index 
) [inline, private]

Definition at line 328 of file Classifier.h.

References Impala::Core::Array::Array2dTem< StorT, elemSize, ArithT >::CPB(), mBackgroundMean, mDimensionality, and mObjectVectors.

Referenced by UpdateClassifiers().

00329     {
00330         const double* object = mObjectVectors->CPB(0, index);
00331         const double* backMean = mBackgroundMean->CPB();
00332         double* dst = vector->CPB();
00333         for(int i=0 ; i<mDimensionality ; i++)
00334         {
00335             dst[i] = object[i] - backMean[i];
00336         }
00337     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:21:02 2011 for ImpalaSrc by  doxygen 1.5.1