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

bool Impala::Core::VideoSet::TestVideo::testFrameAccuracyLevel0 ( Stream::RgbDataSrc src  )  [inline, private]

Definition at line 118 of file TestVideo.h.

References ILOG_DEBUG, ILOG_INFO, ILOG_NDC_POP, ILOG_NDC_PUSH, Impala::Core::Stream::RgbDataSrc::LastFrame(), Impala::MakeString(), and testFrameAccuracyBase().

Referenced by testFrameAccuracy().

00119     {
00120         const int level = 0;
00121         ILOG_NDC_PUSH("Level-" << MakeString(level));
00122         ILOG_INFO("Test level " << MakeString(level) << " started");
00123         const int lastFrameNr = src->LastFrame();
00124         for (int f = 0; f <= lastFrameNr; f++)
00125         {
00126             if (f > 0)
00127                 ILOG_DEBUG("Going 1 forward");
00128 
00129             if (!testFrameAccuracyBase(src, f, level))
00130             {
00131                 ILOG_NDC_POP;
00132                 return false;
00133             }
00134         }
00135         ILOG_NDC_POP;
00136         return true;
00137     }

Here is the call graph for this function:


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