00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef HxImgFtorGenConv3d_h
00012 #define HxImgFtorGenConv3d_h
00013
00014 #include "HxSizes.h"
00015 #include "HxImgFtorGenConvKey.h"
00016 #include "HxImgFtorI3Cast.h"
00017
00018 #include "HxTagList.h"
00019
00020
00034 template <class DstImgSigT, class SrcImgSigT, class KerImgSigT,
00035 class PixOpT, class RedOpT, class KernelT>
00036 class L_HXIMAGEREP HxImgFtorGenConv3d
00037 : public HxImgFtorI3Cast<DstImgSigT, SrcImgSigT, KerImgSigT>
00038 {
00039 public:
00040
00042 typedef HxImgFtorGenConvKey KeyType;
00043
00045 HxImgFtorGenConv3d();
00046
00048 virtual ~HxImgFtorGenConv3d();
00049
00050 protected:
00051
00060 virtual void doIt(Img1DataPtrType dstPtr, Img2DataPtrType srcPtr,
00061 Img3DataPtrType kerPtr,
00062 HxSizes dstSize, HxSizes srcSize, HxSizes kerSize,
00063 HxTagList &tags, HxImgFtorDescription* description = 0);
00064
00065 private:
00066 HxImgFtorGenConv3d(const HxImgFtorGenConv3d&);
00067 };
00068
00069 #ifdef INC_TEMPLATE_SRC
00070 #include "HxImgFtorGenConv3d.c"
00071 #endif
00072
00073 #endif