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

void Impala::Core::VideoSet::Mpeg7Doc::GetTemporalDecomposition ( DOMNode td,
std::vector< String > &  names,
std::vector< int > &  frames 
) [inline, private]

Definition at line 820 of file Mpeg7Doc.h.

References Impala::Util::XmlDoc::GetAttributeValue(), Impala::Util::XmlDoc::GetChildNode(), Impala::Util::XmlDoc::GetChildNodes(), and GetMediaTimePoint().

Referenced by AddShot().

00822     {
00823         std::vector<DOMNode*> segments = GetChildNodes(td, "VideoSegment");
00824         for (int i=0 ; i<segments.size() ; i++)
00825         {
00826             DOMNode* segment = segments[i];
00827             String id = GetAttributeValue(segment, "id");
00828             names.push_back(id);
00829             DOMNode* mediaTime = GetChildNode(segment, "MediaTime", true);
00830             long frame = GetMediaTimePoint(mediaTime);
00831             frames.push_back(frame);
00832         }
00833     }

Here is the call graph for this function:


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