Definition at line 263 of file mainTalk.cpp. References gVerbose, Impala::Core::Array::Pattern::PatRecGenConv2d(), and Impala::Core::Array::PrintData(). Referenced by mainTalk(). 00264 { 00265 std::cout << std::endl << std::endl << std::endl; 00266 std::cout << "============== DoTalkRecGenConv2d =============" << std::endl; 00267 00268 //typedef Array2dScalarInt32 SRCT; 00269 typedef Array2dScalarReal64 SRCT; 00270 //typedef Array2dVec3Real64 SRCT; 00271 typedef Array2dScalarReal64 KERT; 00272 //typedef Array2dVec3Real64 KERT; 00273 typedef Array2dScalarReal64 REST; 00274 //typedef Array2dVec3Real64 REST; 00275 00276 SRCT* im = TalkImage<SRCT>("Input image: ", 0, 1, 3, 3); 00277 00278 KERT* ker = TalkKernel<KERT>("kernel: ", 2); 00279 00280 REST* res = 0; 00281 TalkBpoVal<KERT, KERT, KERT> bpo(gVerbose, true); 00282 TalkBpoAssignVal<KERT, KERT> bpoAss(gVerbose, false, 1000000); 00283 PatRecGenConv2d(res, im, ker, bpo, bpoAss); 00284 00285 std::cout << std::endl << "result: " << std::endl; 00286 PrintData(res, false); 00287 }
Here is the call graph for this function:
|