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

void Impala::Core::Feature::Color64::SetFeatureMode (  )  [inline]

Definition at line 206 of file Color64.h.

References mBinCount, mFeatureName, and mode.

Referenced by Color64().

00207     {
00208         //int mode=0;
00209         if (mFeatureName == "correlogram44")
00210         {
00211             mode=1;
00212             mBinCount = 44;
00213         }
00214         else if (mFeatureName == "texturemoment14")
00215         {
00216             mode=2;
00217             mBinCount = 14;
00218         }
00219         else if (mFeatureName == "rgbmoment6")
00220         {
00221             mode=3;
00222             mBinCount = 6;
00223         }
00224         else if (mFeatureName == "color64grid2x2")
00225         {
00226             mode=4;
00227             mBinCount = 64*2*2;
00228         }
00229         else if (mFeatureName == "color64grid3x3")
00230         {
00231             mode=5;
00232             mBinCount = 64*3*3;
00233         }
00234         else if (mFeatureName == "color64grid4x4")
00235         {
00236             mode=6;
00237             mBinCount = 64*4*4;
00238         }
00239         else if (mFeatureName == "")
00240         {
00241             mode=-1;
00242             mBinCount = 0;
00243         }
00244         else // "color64"
00245         {
00246             mode=0;
00247             mBinCount = 64;
00248         }
00249     }


Generated on Fri Mar 19 11:08:43 2010 for ImpalaSrc by  doxygen 1.5.1