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

template<class ArrayT>
ArrayT* Impala::Samples::Talk::TalkImage ( std::string  comment,
double  start,
double  inc,
int  bw,
int  bh 
)

Definition at line 90 of file mainTalk.cpp.

References gHeight, gWidth, Impala::Core::Array::PrintData(), Impala::Core::Array::Set(), and TalkUniqueImage().

00091 {
00092     double* ptr = TalkUniqueImage(gWidth, gHeight, start, inc);
00093     Array2dScalarReal64* aDouble =
00094         MakeFromData<Array2dScalarReal64>(ptr, gWidth, gHeight, bw, bh);
00095     ArrayT* res = 0;
00096     Set(res, aDouble);
00097     std::cout << comment << std::endl;
00098     PrintData(res, false);
00099     delete ptr;
00100     return res;
00101 }

Here is the call graph for this function:


Generated on Fri Mar 19 11:38:37 2010 for ImpalaSrc by  doxygen 1.5.1