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

template<class DstArrayT, class SrcArrayT>
DstArrayT* Impala::Core::Array::ArrayClone ( SrcArrayT *  src,
Int64  minimalBW = 0,
Int64  minimalBH = 0 
)

Definition at line 359 of file Array2dTem.h.

References Impala::Max().

Referenced by Impala::Core::Tracking::KalmanTemplate::KalmanTemplate().

00360 {
00361     Int64 bw = Impala::Max(src->BW(), minimalBW);
00362     Int64 bh = Impala::Max(src->BH(), minimalBH);
00363     return new DstArrayT(src->CW(), src->CH(), bw, bh);
00364 }

Here is the call graph for this function:


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