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

Impala::Core::VideoSet::ProtoSimilarityEval::ProtoSimilarityEval ( Feature::Computor computor,
Reporter reporter,
CmdOptions options 
) [inline]

Definition at line 22 of file ProtoSimilarityEval.h.

References Impala::atol(), Impala::CmdOptions::GetArg(), Impala::CmdOptions::GetNrArg(), ILOG_ERROR, mComputor, mIsPartial, mReporter, mSkipThisVideo, mWalkType, and Impala::Core::Feature::Computor::ReadPrototypes().

00024     {
00025         mReporter = reporter;
00026         mComputor = computor;
00027         mWalkType = "unknown";
00028         mIsPartial = false;
00029         if (options.GetNrArg() < 5)
00030             ILOG_ERROR("Need more arguments");
00031         String protoSet = options.GetArg(2);
00032         if (protoSet == "nil")
00033             protoSet = "";
00034         String maskSet = options.GetArg(3);
00035         if (maskSet == "nil")
00036             maskSet = "";
00037         int maxNr = atol(options.GetArg(4));
00038         mComputor->ReadPrototypes(protoSet, maskSet, maxNr);
00039         mSkipThisVideo = false;
00040     }

Here is the call graph for this function:


Generated on Fri Mar 19 11:31:03 2010 for ImpalaSrc by  doxygen 1.5.1