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

Erosion.h

Go to the documentation of this file.
00001 #ifndef Impala_Core_Array_Erosion_h
00002 #define Impala_Core_Array_Erosion_h
00003 
00004 #include "Core/Array/Pattern/PatGenConv2d.h"
00005 #include "Core/Array/Trait/BpoAdd.h"
00006 #include "Core/Array/Trait/BpoMinAssign.h"
00007 
00008 namespace Impala
00009 {
00010 namespace Core
00011 {
00012 namespace Array
00013 {
00014 
00015 
00016 template<class DstArrayT, class SrcArrayT, class KerArrayT>
00017 inline void
00018 Erosion(DstArrayT*& dst, SrcArrayT* src, KerArrayT* ker)
00019 {
00020     Trait::BpoAdd<KerArrayT, KerArrayT, KerArrayT> bpo;
00021     Trait::BpoMinAssign<KerArrayT, KerArrayT> bpoAss;
00022     Pattern::PatGenConv2d(dst, src, ker, bpo, bpoAss);
00023 }
00024 
00025 } // namespace Array
00026 } // namespace Core
00027 } // namespace Impala
00028 
00029 #endif

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