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

Impala::Core::VideoSet::ComputeKernelData::ComputeKernelData ( Reporter reporter,
CmdOptions options 
) [inline]

Definition at line 21 of file ComputeKernelData.h.

References Impala::CmdOptions::GetArg(), Impala::Core::Database::RawDataSet::GetLocator(), Impala::CmdOptions::GetNrArg(), Impala::CmdOptions::GetString(), ILOG_ERROR, Impala::Core::Database::MakeRawDataSet(), mDA, mDevelSet, mFeatureIndexCat, mKernelMatrixName, and mModel.

00022     {
00023         if (options.GetNrArg() < 5)
00024         {
00025             ILOG_ERROR("Missing argument");
00026             return;
00027         }
00028         String name2 = options.GetArg(2);
00029         mDevelSet = Database::MakeRawDataSet(name2, true);
00030         mModel = options.GetArg(3);
00031         mKernelMatrixName = options.GetArg(4);
00032         mFeatureIndexCat = options.GetString("featureIndexCat");
00033         KernelMatrixLocator loc(mDevelSet->GetLocator(), true, "", "",
00034                                 mModel, mKernelMatrixName, "");
00035         loc.SetFeatureIndexCat(mFeatureIndexCat);
00036         loc.SetStartNode(0);
00037         loc.SetNodeCount(Link::Mpi::NrProcs());
00038         loc.SetDoParts(0);
00039         mDA = Persistency::DistributedAccessRepository().Get(loc);
00040     }

Here is the call graph for this function:


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