IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
HighPass3dImgLvl3.h
1 // HighPass3dImgLvl3.h:
3 // --------------------
4 //
14 
15 #ifndef __IPSDKIPLFILTERING_HIGHPASS3DIMGLVL3_H__
16 #define __IPSDKIPLFILTERING_HIGHPASS3DIMGLVL3_H__
17 
20 
21 // Attributes headers
22 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/ZStrip3dWithKernel/InKnlZStrip3d.h>
23 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/ZStrip3d/OutZStrip3d.h>
24 
25 namespace ipsdk {
26 namespace imaproc {
27 namespace filter {
28 
31 
32 // declare processing algorithm
33 IPSDK_DECLARE_PROCESSING_ALGORITHM(IPSDKIPLFiltering, HighPass3dImg,
34  ipsdk::imaproc::matchSize(_pInKnlZStrip3d, _pOutZStrip3d),
35  (((ipsdk)(imaproc)(attr))(InKnlZStrip3d))
36  (((ipsdk)(imaproc)(attr))(OutZStrip3d)))
37 
38  // implementation of image processing data identifier retrieval method
39  // for function selector usage
40  IPSDK_DECLARE_ALGORITHM_FUNCTION_SELECTOR(((STRIP)(InKnlZStrip3d))
41  ((STRIP)(OutZStrip3d)));
42 
43  // declaration of parsed data during processing
44  IPSDK_DECLARE_ALGORITHM_PARSED_DATA(((LINESTRIP)(InKnlZStrip3d))
45  ((LINESTRIP)(OutZStrip3d)));
46 
47 // methods
48 public:
49 
50 protected:
54 
56  template <typename BufInType, typename BufOutType,
57  ipsdk::eInstructionSet::domain IS>
58  ipsdk::BoolResult genericProcessFunction(const ipsdk::processor::ProcessingInfo& info);
59 
60 // attributes
61 protected:
65  FragHybridBufferPtr _pInitialXSum;
66  FragHybridBufferPtr _pMainXSum;
67  FragHybridBufferPtr _pFinalXSum;
69 
73  FragHybridBufferPtr _pInitialXYSum;
74  FragHybridBufferPtr _pMainXYSum;
75  FragHybridBufferPtr _pFinalXYSum;
77 
81  HybridBufferPtr _pInitialXYZSum;
82  HybridBufferPtr _pMainXYZSum;
83  HybridBufferPtr _pFinalXYZSum;
85 };
86 
89 
90 } // end of namespace filter
91 } // end of namespace imaproc
92 } // end of namespace ipsdk
93 
94 #endif // __IPSDKIPLFILTERING_HIGHPASS3DIMGLVL3_H__
boost::shared_ptr< FragHybridBuffer > FragHybridBufferPtr
ipsdk::core::ExecResult preProcess()
method called before processing
#define IPSDK_DECLARE_PROCESSING_ALGORITHM(libraryName, algoName, RuleString, attributeSeq)
#define IPSDK_DECLARE_ALGORITHM_PARSED_DATA(dataSeq)
#define IPSDK_DECLARE_ALGORITHM_FUNCTION_SELECTOR(dataTypeSeq)
boost::shared_ptr< HybridBuffer > HybridBufferPtr
Definition of import/export macro for library.