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

Impala::Core::Array::Octaves::Octaves ( Array2dScalarUInt8 src,
int  Octaves,
int  Levels,
int  MinOctave = 0 
) [inline]

Definition at line 78 of file Octaves.h.

References Impala::CmdOptions::GetBool(), Impala::CmdOptions::GetInstance(), ILOG_INFO, Init(), max, min, mRecGauss, mRecursive, mResample, mSrcScalar, Normalize(), Impala::Core::Array::PixMinMax(), and Impala::Core::Array::Set().

00079     : mOctaves(Octaves),
00080     mMinOctave(MinOctave),
00081     mLevels(Levels),
00082     mRecGauss(true),
00083     mRecursive(true),
00084     mSrcScalar(0)
00085     {
00086         CmdOptions& options = CmdOptions::GetInstance();
00087         mRecGauss=options.GetBool("recGauss",false);
00088         mResample=options.GetBool("resample",false);
00089         mRecursive=options.GetBool("recursive",false);
00090 
00091 
00092         ILOG_INFO("Using RecGauss  : "<<(mRecGauss?"yes":"no"));
00093         ILOG_INFO("Using Resampling: "<<(mResample?"yes":"no"));
00094         ILOG_INFO("All Recursive   : "<<(mRecursive?"yes":"no"));
00095         //Copy the input array to our Real64 array
00096         Real64 min,max;
00097         Set(mSrcScalar,src);
00098         PixMinMax(src,&min,&max);
00099         ILOG_INFO("Input image Min-Max:"<<min<<" "<<max);
00100         Normalize(mSrcScalar);
00101         PixMinMax(mSrcScalar,&min,&max);
00102         ILOG_INFO("Input image Min-Max:"<<min<<" "<<max);
00103         Init();
00104     }

Here is the call graph for this function:


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