IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
PearsonColocalization3dImgLvl3.h
1 // PearsonColocalization3dImgLvl3.h:
3 // ---------------------------------
4 //
14 
15 #ifndef __IPSDKIPLFILTERING_PEARSONCOLOCALIZATION3DIMGLVL3_H__
16 #define __IPSDKIPLFILTERING_PEARSONCOLOCALIZATION3DIMGLVL3_H__
17 
20 
21 // Attributes headers
22 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/ZStrip3d/InZStrip3d1.h>
23 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/ZStrip3d/InZStrip3d2.h>
24 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/ZStrip3d/OutZStrip3d.h>
25 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Value/InFactor.h>
26 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Value/InImgMean1.h>
27 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Value/InImgMean2.h>
28 
29 namespace ipsdk {
30 namespace imaproc {
31 namespace filter {
32 
35 
36 // declare processing algorithm
37 IPSDK_DECLARE_PROCESSING_ALGORITHM(IPSDKIPLFiltering, PearsonColocalization3dImg,
38  ipsdk::imaproc::matchSize(_pInZStrip3d1, _pInZStrip3d2) &&
39  ipsdk::imaproc::matchSize(_pInZStrip3d1, _pOutZStrip3d),
40  (((ipsdk)(imaproc)(attr))(InZStrip3d1))
41  (((ipsdk)(imaproc)(attr))(InZStrip3d2))
42  (((ipsdk)(imaproc)(attr))(InImgMean1))
43  (((ipsdk)(imaproc)(attr))(InImgMean2))
44  (((ipsdk)(imaproc)(attr))(InFactor))
45  (((ipsdk)(imaproc)(attr))(OutZStrip3d)))
46 
47  // implementation of image processing data identifier retrieval method
48  // for function selector usage
49  IPSDK_DECLARE_ALGORITHM_FUNCTION_SELECTOR(((STRIP)(InZStrip3d1))
50  ((STRIP)(InZStrip3d2)));
51 
52  // declaration of parsed data during processing
53  IPSDK_DECLARE_ALGORITHM_PARSED_DATA(((RAWSTRIP)(InZStrip3d1))
54  ((RAWSTRIP)(InZStrip3d2))
55  ((RAWSTRIP)(OutZStrip3d)));
56 
57 // methods
58 public:
59 
60 protected:
61 
63  template <typename BufType1, typename BufType2,
64  ipsdk::eInstructionSet::domain IS>
65  ipsdk::BoolResult genericProcessFunction(const ipsdk::processor::ProcessingInfo& info);
66 
67 // attributes
68 protected:
69 
70 };
71 
74 
75 } // end of namespace filter
76 } // end of namespace imaproc
77 } // end of namespace ipsdk
78 
79 #endif // __IPSDKIPLFILTERING_PEARSONCOLOCALIZATION3DIMGLVL3_H__
#define IPSDK_DECLARE_PROCESSING_ALGORITHM(libraryName, algoName, RuleString, attributeSeq)
#define IPSDK_DECLARE_ALGORITHM_PARSED_DATA(dataSeq)
#define IPSDK_DECLARE_ALGORITHM_FUNCTION_SELECTOR(dataTypeSeq)
Definition of import/export macro for library.