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

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

Definition at line 141 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().

00142     {
00143         const int level = 1;
00144         ILOG_NDC_PUSH("Level-" << MakeString(level));
00145         ILOG_INFO("Test level " << MakeString(level) << " started");
00146         const int lastFrameNr = src->LastFrame();
00147         for (int f = lastFrameNr; f >= 0; f--)
00148         {   
00149             if (f < lastFrameNr)
00150                 ILOG_DEBUG("Going 1 backward");
00151 
00152             if (!testFrameAccuracyBase(src, f, level))
00153             {
00154                 ILOG_NDC_POP;
00155                 return false;
00156             }
00157         }
00158         ILOG_NDC_POP;
00159         return true;
00160     }

Here is the call graph for this function:


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