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

void Impala::Core::VideoSet::KfrMotionExtractor::DumpEnergyBuffer ( int  bWidth,
int  bHeight 
) [inline]

Definition at line 358 of file KfrMotionExtractor.h.

References m_EnergyBuffer.

00359     {
00360         printf("Energy Buffer (%dx%d):\n",bWidth,bHeight);
00361         for (int j=0; j<bHeight; j++)
00362         {
00363             for (int i=0; i<bWidth; i++)
00364             {
00365                 printf("%d ",m_EnergyBuffer[j*bWidth + i]);
00366             }
00367             printf("\n");
00368         }
00369         printf("\n");
00370     }


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