IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
PearsonColocalization2dImgLvl3.h
1 // PearsonColocalization2dImgLvl3.h:
3 // ---------------------------------
4 //
14 
15 #ifndef __IPSDKIPLFILTERING_PEARSONCOLOCALIZATION2DIMGLVL3_H__
16 #define __IPSDKIPLFILTERING_PEARSONCOLOCALIZATION2DIMGLVL3_H__
17 
20 
21 // Attributes headers
22 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/InYStrip2d1.h>
23 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/InYStrip2d2.h>
24 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/OutYStrip2d.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, PearsonColocalization2dImg,
38  ipsdk::imaproc::matchSize(_pInYStrip2d1, _pInYStrip2d2) &&
39  ipsdk::imaproc::matchSize(_pInYStrip2d1, _pOutYStrip2d),
40  (((ipsdk)(imaproc)(attr))(InYStrip2d1))
41  (((ipsdk)(imaproc)(attr))(InYStrip2d2))
42  (((ipsdk)(imaproc)(attr))(InImgMean1))
43  (((ipsdk)(imaproc)(attr))(InImgMean2))
44  (((ipsdk)(imaproc)(attr))(InFactor))
45  (((ipsdk)(imaproc)(attr))(OutYStrip2d)))
46 
47  // implementation of image processing data identifier retrieval method
48  // for function selector usage
49  IPSDK_DECLARE_ALGORITHM_FUNCTION_SELECTOR(((STRIP)(InYStrip2d1))
50  ((STRIP)(InYStrip2d2)));
51 
52  // declaration of parsed data during processing
53  IPSDK_DECLARE_ALGORITHM_PARSED_DATA(((RAWSTRIP)(InYStrip2d1))
54  ((RAWSTRIP)(InYStrip2d2))
55  ((RAWSTRIP)(OutYStrip2d)));
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_PEARSONCOLOCALIZATION2DIMGLVL3_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.