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

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

Definition at line 20 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.

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

Here is the call graph for this function:


Generated on Thu Jan 13 09:19:58 2011 for ImpalaSrc by  doxygen 1.5.1