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

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

Definition at line 365 of file KfrMotionExtractor.h.

References m_EnergyBuffer.

00366     {
00367         printf("Energy Buffer (%dx%d):\n",bWidth,bHeight);
00368         for (int j=0; j<bHeight; j++)
00369         {
00370             for (int i=0; i<bWidth; i++)
00371             {
00372                 printf("%d ",m_EnergyBuffer[j*bWidth + i]);
00373             }
00374             printf("\n");
00375         }
00376         printf("\n");
00377     }


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