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

void Impala::Core::Array::ExportMatlab ( double *  mData,
Array2dScalarReal64 *  im 
) [inline]

Definition at line 15 of file ExportMatlab.h.

References Impala::Core::Array::Array2dTem< StorT, elemSize, ArithT >::CH(), Impala::Core::Array::Array2dTem< StorT, elemSize, ArithT >::CPB(), and Impala::Core::Array::Array2dTem< StorT, elemSize, ArithT >::CW().

00016 {
00017     int width = im->CW();
00018     int height = im->CH();
00019     double* imPtr = im->CPB();
00020     for (int y=0 ; y<height ; y++)
00021     {
00022         double* p = mData + y;
00023         for (int x=0 ; x<width ; x++)
00024         {
00025             *p = *imPtr++;
00026             p += height;
00027         }
00028     }
00029 }

Here is the call graph for this function:


Generated on Fri Mar 19 10:56:33 2010 for ImpalaSrc by  doxygen 1.5.1