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

OGLIMAGE* Impala::Visualization::VideoMinimap::CreateImageForShotID ( int  shotID  )  [inline, protected]

Definition at line 348 of file VideoMinimap.h.

References Impala::Core::Array::Array2dTem< StorT, elemSize, ArithT >::CH(), Impala::Core::Array::Array2dTem< StorT, elemSize, ArithT >::CW(), Impala::Core::Trec::ThreadSet::GetImageByShotID(), mThreadSet, MyOglImdataDestroyFunc(), and MyOglImdataFunc().

Referenced by UpdatePreviewWindow().

00349     {
00350         OGLIMAGE *im;
00351         Array2dVec3UInt8* ar =
00352 //            Core::Array::ArrayCreate<Array2dVec3UInt8>(100, 100, 0, 0);
00353             mThreadSet->GetImageByShotID(shotID); //-- TODO
00354         im = oglSys.OglImage(GL_RGB, ar->CW(), ar->CH());
00355         im->imDataFunc = MyOglImdataFunc;
00356         im->onDestroy = MyOglImdataDestroyFunc;        
00357         im->imageHandle = ar;
00358         return im;
00359     }

Here is the call graph for this function:


Generated on Fri Mar 19 11:49:57 2010 for ImpalaSrc by  doxygen 1.5.1