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

virtual void Impala::Core::VideoSet::ExportFrameHashes::HandleNewFrame ( VideoSet vs,
int  fileId,
Stream::RgbDataSrc src 
) [inline, virtual]

Arrived at a new frame in a "normal" walk.

Reimplemented from Impala::Core::VideoSet::Listener.

Definition at line 58 of file ExportFrameHashes.h.

References Impala::Core::Table::TableTem< Col1T, Col2T, Col3T, Col4T, Col5T, Col6T, Col7T, Col8T, Col9T >::Add(), Impala::Core::Stream::RgbDataSrc::FrameHash(), Impala::Core::Stream::RgbDataSrc::FrameHashBeforeConversion(), Impala::Core::Stream::RgbDataSrc::FrameNr(), Impala::Core::Stream::RgbDataSrc::HASH_SIZE, ILOG_DEBUG, and mFrameHashes.

00059     {
00060         const int frameNr = src->FrameNr();
00061         String hashPre = src->FrameHashBeforeConversion();
00062         String hashPost = src->FrameHash();
00063         ILOG_DEBUG(frameNr << ": " << hashPre << " - " << hashPost);
00064         const FixedString hashPreFixed(src->HASH_SIZE, 
00065                                        (char*) hashPre.c_str(), true);
00066         const FixedString hashPostFixed(src->HASH_SIZE, 
00067                                         (char*) hashPost.c_str(), true);
00068         mFrameHashes->Add(frameNr, hashPreFixed, hashPostFixed);
00069     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:21:50 2011 for ImpalaSrc by  doxygen 1.5.1