IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
HarrisCorner2dImgLvl3.h
1 // HarrisCorner2dImgLvl3.h:
3 // ------------------------
4 //
14 
15 #ifndef __IPSDKIPLFEATUREDETECTION_HARRISCORNER2DIMGLVL3_H__
16 #define __IPSDKIPLFEATUREDETECTION_HARRISCORNER2DIMGLVL3_H__
17 
20 
21 // Attributes headers
22 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/InXXYStrip2d.h>
23 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/InXYYStrip2d.h>
24 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/InYYYStrip2d.h>
25 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/DataItem/InCornerDetectionParams.h>
26 #include <IPSDKIPL/IPSDKIPLAttributes/Attribute/Strip/YStrip2d/OutYStrip2d.h>
27 
28 namespace ipsdk {
29 namespace imaproc {
30 namespace fd {
31 
34 
35 // declare processing algorithm
36 IPSDK_DECLARE_PROCESSING_ALGORITHM(IPSDKIPLFeatureDetection, HarrisCorner2dImg,
37  ipsdk::imaproc::matchSizeAndType(_pInXXYStrip2d, _pInXYYStrip2d, _pInYYYStrip2d, _pOutYStrip2d),
38  (((ipsdk)(imaproc)(attr))(InXXYStrip2d))
39  (((ipsdk)(imaproc)(attr))(InXYYStrip2d))
40  (((ipsdk)(imaproc)(attr))(InYYYStrip2d))
41  (((ipsdk)(imaproc)(attr))(InCornerDetectionParams))
42  (((ipsdk)(imaproc)(attr))(OutYStrip2d)))
43 
44  // implementation of image processing data identifier retrieval method
45  // for function selector usage
46  IPSDK_DECLARE_ALGORITHM_FUNCTION_SELECTOR(((STRIP)(OutYStrip2d)));
47 
48  // declaration of parsed data during processing
49  IPSDK_DECLARE_ALGORITHM_PARSED_DATA(((RAWSTRIP)(InXXYStrip2d))
50  ((RAWSTRIP)(InXYYStrip2d))
51  ((RAWSTRIP)(InYYYStrip2d))
52  ((RAWSTRIP)(OutYStrip2d)));
53 
54 // methods
55 public:
56 
57 protected:
59  template <typename BufType,
60  ipsdk::eInstructionSet::domain IS>
61  ipsdk::BoolResult genericProcessFunction(const ipsdk::processor::ProcessingInfo& info);
62 
63 // attributes
64 protected:
65 
66 };
67 
70 
71 } // end of namespace fd
72 } // end of namespace imaproc
73 } // end of namespace ipsdk
74 
75 #endif // __IPSDKIPLFEATUREDETECTION_HARRISCORNER2DIMGLVL3_H__
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)