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

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

Definition at line 351 of file KfrMotionExtractor.h.

References m_EnergyMap.

Referenced by FillBuffer().

00352     {
00353         printf("Energy Map (%dx%d): Window Index -> %s\n", bWidth, bHeight, comments);
00354         for (int j=0; j<bHeight; j++)
00355         {
00356             for (int i=0; i<bWidth; i++)
00357             {
00358                 printf("%.1f ",m_EnergyMap[j*bWidth + i]);
00359             }
00360             printf("\n");
00361         }
00362         printf("\n");
00363     }


Generated on Thu Jan 13 09:22:01 2011 for ImpalaSrc by  doxygen 1.5.1