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

void Impala::Core::Feature::CalculateSurfDescriptors ( Array::Array2dVec3UInt8 *  inputNoBorder,
Geometry::InterestPointList &  pointList,
std::string  descriptor,
int  haarSize,
int  components,
int  spaciality 
)

this code is analogous to CalculateFIST2Descriptors

Definition at line 17 of file Surf.h.

References DSurf(), GetColorChannels(), and Impala::StringReplace().

Referenced by Impala::Core::Feature::InterestPointFeature::ComputeDescriptors(), and GetFeatures().

00021 {
00022     descriptor = StringReplace(descriptor, "surf", "");
00023     std::vector<Array::Array2dScalarReal64*> channels =
00024         GetColorChannels(inputNoBorder, descriptor);
00025     for(int i=0 ; i<channels.size() ; ++i)
00026     {
00027         DSurf(channels[i], pointList, haarSize, components, spaciality);
00028         delete channels[i];
00029     }
00030 }

Here is the call graph for this function:


Generated on Fri Mar 19 11:08:35 2010 for ImpalaSrc by  doxygen 1.5.1