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

bool Impala::Core::Tracking::TrackerBackFore::ObjectVisible (  )  [inline, virtual]

Implements Impala::Core::Tracking::Tracker.

Definition at line 120 of file TrackerBackFore.h.

References Impala::Core::Array::Array2dTem< StorT, elemSize, ArithT >::CH(), Impala::Core::Array::Array2dTem< StorT, elemSize, ArithT >::CW(), Impala::Core::Geometry::Rectangle::mBottom, mInput, Impala::Core::Geometry::Rectangle::mLeft, mPosition, Impala::Core::Geometry::Rectangle::mRight, and Impala::Core::Geometry::Rectangle::mTop.

Referenced by Process().

00121     {
00122         if (mPosition.mLeft >= mInput->CW())
00123             return false;
00124         if (mPosition.mTop >= mInput->CH())
00125             return false;
00126         if (mPosition.mRight <= 0)
00127             return false;
00128         if (mPosition.mBottom <= 0)
00129             return false;
00130         return true;
00131     }

Here is the call graph for this function:


Generated on Fri Mar 19 11:22:45 2010 for ImpalaSrc by  doxygen 1.5.1