IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
PutSlice3dImgLvl3.h
1 // PutSlice3dImgLvl3.h:
3 // ------------------
4 //
14 
15 #ifndef __IPSDKIPLUTILITY_PUTSLICE3DIMGLVL3_H__
16 #define __IPSDKIPLUTILITY_PUTSLICE3DIMGLVL3_H__
17 
20 
21 // Attributes headers
22 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/SubImage/Input/3d/InSubImg3d.h>
23 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Image/Output/OutImg.h>
24 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/InYStrip2d.h>
25 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/ZStrip3d/OutZStrip3d.h>
26 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Enumerate/InAxis.h>
27 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Value/InSliceIndex.h>
28 
29 namespace ipsdk {
30 namespace imaproc {
31 namespace util {
32 
35 
36 // declare processing algorithm
37 IPSDK_DECLARE_PROCESSING_ALGORITHM(IPSDKIPLUtility, PutSlice3dImg,
39  (((ipsdk)(imaproc)(attr))(InSubImg3d))
40  (((ipsdk)(imaproc)(attr))(InYStrip2d))
41  (((ipsdk)(imaproc)(attr))(InAxis))
42  (((ipsdk)(imaproc)(attr))(InSliceIndex))
43  (((ipsdk)(imaproc)(attr))(OutImg)))
44 
45  // implementation of image processing data identifier retrieval method
46  // for function selector usage
47  IPSDK_DECLARE_ALGORITHM_FUNCTION_SELECTOR(((STRIP)(InYStrip2d)));
48 
49  // declaration of parsed data during processing
50  IPSDK_DECLARE_ALGORITHM_PARSED_DATA(((RAWSTRIP)(InYStrip2d)));
51 
52 // methods
53 public:
54 
55 protected:
56 
58  template <typename T,
59  ipsdk::eInstructionSet::domain IS>
60  ipsdk::BoolResult genericProcessFunction(const ipsdk::processor::ProcessingInfo& info);
61 
62 // attributes
63 protected:
64 
65 };
66 
69 
70 } // end of namespace util
71 } // end of namespace imaproc
72 } // end of namespace ipsdk
73 
74 #endif // __IPSDKIPLUTILITY_PUTSLICE3DIMGLVL3_H__
IPSDKBASEPROCESSING_API RulePtr none()
Definition of import/export macro for library.
#define IPSDK_DECLARE_PROCESSING_ALGORITHM(libraryName, algoName, RuleString, attributeSeq)
#define IPSDK_DECLARE_ALGORITHM_PARSED_DATA(dataSeq)
#define IPSDK_DECLARE_ALGORITHM_FUNCTION_SELECTOR(dataTypeSeq)