Home || Architecture || Video Search || Visual Search || Scripts || Applications || 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().

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 Fri Mar 19 10:56:06 2010 for ImpalaSrc by  doxygen 1.5.1