IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
CannyThresholds.h
1 // CannyThresholds.h:
3 // --------------------------
4 //
16 
17 #ifndef __IPSDKIPLATTRIBUTES_CANNYTHRESHOLDS_H__
18 #define __IPSDKIPLATTRIBUTES_CANNYTHRESHOLDS_H__
19 
22 
23 namespace ipsdk {
24 namespace imaproc {
25 namespace attr {
26 
32 
33 IPSDK_DECLARE_NODE_DATA(IPSDKIPLAttributes, CannyThresholds,
34  ((LEAF)(Low)(ipsdk::ipReal64))
35  ((LEAF)(High)(ipsdk::ipReal64)))
36 };
37 
40 
43 typedef boost::shared_ptr<ipsdk::imaproc::attr::CannyThresholds> CannyThresholdsPtr;
44 
47 typedef boost::shared_ptr<const ipsdk::imaproc::attr::CannyThresholds> CannyThresholdsConstPtr;
48 
51 
56  const ipReal64 high);
57 
60 
61 } // end of namespace attr
62 } // end of namespace imaproc
63 } // end of namespace ipsdk
64 
65 #endif // __IPSDKIPLATTRIBUTES_CANNYTHRESHOLDS_H__
#define IPSDK_DECLARE_NODE_DATA(libraryName, className, childSeq)
boost::shared_ptr< ipsdk::imaproc::attr::CannyThresholds > CannyThresholdsPtr
shared pointer to ipsdk::imaproc::attr::CannyThresholds
Definition: CannyThresholds.h:131
double ipReal64
Definition of import/export macro for library.
boost::shared_ptr< const ipsdk::imaproc::attr::CannyThresholds > CannyThresholdsConstPtr
shared pointer to const ipsdk::imaproc::attr::CannyThresholds
Definition: CannyThresholds.h:135
IPSDKIPLATTRIBUTES_API ipsdk::imaproc::attr::CannyThresholdsPtr createCannyThresholds(const ipReal64 low, const ipReal64 high)
function allowing to create a CannyThresholds data item
#define IPSDKIPLATTRIBUTES_API
Import/Export macro for library IPSDKIPLAttributes.
Definition: IPSDKIPLAttributesExports.h:25