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

void Impala::Core::VideoSet::KfrMotionExtractor::DumpEnergyMap ( int  bWidth,
int  bHeight,
char *  comments = "" 
) [inline]

Definition at line 344 of file KfrMotionExtractor.h.

References m_EnergyMap.

Referenced by FillBuffer().

00345     {
00346         printf("Energy Map (%dx%d): Window Index -> %s\n", bWidth, bHeight, comments);
00347         for (int j=0; j<bHeight; j++)
00348         {
00349             for (int i=0; i<bWidth; i++)
00350             {
00351                 printf("%.1f ",m_EnergyMap[j*bWidth + i]);
00352             }
00353             printf("\n");
00354         }
00355         printf("\n");
00356     }


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