Definition at line 195 of file mainTalk.cpp. References gVerbose, Impala::Core::Array::Pattern::PatGenConv2d(), and Impala::Core::Array::PrintData(). Referenced by mainTalk(). 00196 { 00197 std::cout << std::endl << std::endl << std::endl; 00198 std::cout << "============== DoTalkGenConv2d =============" << std::endl; 00199 00200 //typedef Array2dScalarInt32 SRCT; 00201 typedef Array2dScalarReal64 SRCT; 00202 //typedef Array2dVec3Real64 SRCT; 00203 typedef Array2dScalarReal64 KERT; 00204 //typedef Array2dVec3Real64 KERT; 00205 typedef Array2dScalarReal64 REST; 00206 //typedef Array2dVec3Real64 REST; 00207 00208 SRCT* im = TalkImage<SRCT>("Input image: ", 0, 1, 3, 3); 00209 00210 KERT* ker = TalkKernel<KERT>("kernel: ", 2); 00211 00212 REST* res = 0; 00213 TalkBpoVal<KERT, KERT, KERT> bpo(gVerbose, false); 00214 TalkBpoAssignVal<KERT, KERT> bpoAss(gVerbose, false, 1000000); 00215 PatGenConv2d(res, im, ker, bpo, bpoAss); 00216 00217 std::cout << std::endl << "result: " << std::endl; 00218 PrintData(res, false); 00219 }
Here is the call graph for this function:
|