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

ConvKernelSeparated.h

Go to the documentation of this file.
00001 #ifndef Impala_Core_Array_ConvKernelSeparated_h
00002 #define Impala_Core_Array_ConvKernelSeparated_h
00003 
00004 #include "Core/Array/Pattern/PatGenConv2dSep.h"
00005 #include "Core/Array/Trait/BpoMul.h"
00006 #include "Core/Array/Trait/BpoAddAssign.h"
00007 #include "Util/TimePlot.h"
00008 
00009 namespace Impala
00010 {
00011 namespace Core
00012 {
00013 namespace Array
00014 {
00015 
00016 
00017 template<class DstArrayT, class SrcArrayT, class KerArrayT>
00018 inline void
00019 ConvKernelSeparated(DstArrayT*& dst, SrcArrayT* src, KerArrayT* kerx,
00020                     KerArrayT* kery, int vType = 6, Util::TimePlot* plotter = 0)
00021 {
00022     Trait::BpoMul<KerArrayT, KerArrayT, KerArrayT> bpo;
00023     Trait::BpoAddAssign<KerArrayT, KerArrayT> bpoAss;
00024     Pattern::PatGenConv2dSep(dst, src, kerx, kery, bpo, bpoAss, vType, plotter);
00025 }
00026 
00027 } // namespace Array
00028 } // namespace Core
00029 } // namespace Impala
00030 
00031 #endif

Generated on Fri Mar 19 09:30:44 2010 for ImpalaSrc by  doxygen 1.5.1