IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
HysteresisParams.h
1 // HysteresisParams.h:
3 // -------------------
4 //
15 
16 #ifndef __IPSDKIPLATTRIBUTES_HYSTERESISPARAMS_H__
17 #define __IPSDKIPLATTRIBUTES_HYSTERESISPARAMS_H__
18 
22 
23 namespace ipsdk {
24 namespace imaproc {
25 namespace attr {
26 
32 
33 IPSDK_DECLARE_NODE_DATA(IPSDKIPLAttributes, HysteresisParams,
34  ((LEAF)(LowSeedThreshold)(ipsdk::ipReal64))
35  ((LEAF)(HighSeedThreshold)(ipsdk::ipReal64))
36  ((LEAF)(LowPropagationThreshold)(ipsdk::ipReal64))
37  ((LEAF)(HighPropagationThreshold)(ipsdk::ipReal64)))
38 };
39 
42 
45 typedef boost::shared_ptr<ipsdk::imaproc::attr::HysteresisParams> HysteresisParamsPtr;
46 
49 typedef boost::shared_ptr<const ipsdk::imaproc::attr::HysteresisParams> HysteresisParamsConstPtr;
50 
53 
57 createHysteresisParams(const ipsdk::ipReal64 lowSeedThreshold,
58  const ipsdk::ipReal64 highSeedThreshold,
59  const ipsdk::ipReal64 lowPropagationThreshold,
60  const ipsdk::ipReal64 highPropagationThreshold);
61 
65 createLightHysteresisParams(const ipsdk::ipReal64 lowSeedThreshold,
66  const ipsdk::ipReal64 lowPropagationThreshold,
67  const ipsdk::image::eImageBufferType& bufType);
68 
72 createDarkHysteresisParams(const ipsdk::ipReal64 highSeedThreshold,
73  const ipsdk::ipReal64 highPropagationThreshold,
74  const ipsdk::image::eImageBufferType& bufType);
75 
78 
79 } // end of namespace attr
80 } // end of namespace imaproc
81 } // end of namespace ipsdk
82 
83 #endif // __IPSDKIPLATTRIBUTES_HYSTERESISPARAMS_H__
#define IPSDK_DECLARE_NODE_DATA(libraryName, className, childSeq)
IPSDKIPLATTRIBUTES_API ipsdk::imaproc::attr::HysteresisParamsPtr createLightHysteresisParams(const ipsdk::ipReal64 lowSeedThreshold, const ipsdk::ipReal64 lowPropagationThreshold, const ipsdk::image::eImageBufferType &bufType)
function allowing to create a hysteresis parameter for light hysteresis
double ipReal64
boost::shared_ptr< const ipsdk::imaproc::attr::HysteresisParams > HysteresisParamsConstPtr
shared pointer to const ipsdk::imaproc::attr::HysteresisParams
Definition: HysteresisParams.h:173
boost::shared_ptr< ipsdk::imaproc::attr::HysteresisParams > HysteresisParamsPtr
shared pointer to ipsdk::imaproc::attr::HysteresisParams
Definition: HysteresisParams.h:169
Definition of import/export macro for library.
IPSDKIPLATTRIBUTES_API ipsdk::imaproc::attr::HysteresisParamsPtr createHysteresisParams(const ipsdk::ipReal64 lowSeedThreshold, const ipsdk::ipReal64 highSeedThreshold, const ipsdk::ipReal64 lowPropagationThreshold, const ipsdk::ipReal64 highPropagationThreshold)
function allowing to create a hysteresis parameter
IPSDKIPLATTRIBUTES_API ipsdk::imaproc::attr::HysteresisParamsPtr createDarkHysteresisParams(const ipsdk::ipReal64 highSeedThreshold, const ipsdk::ipReal64 highPropagationThreshold, const ipsdk::image::eImageBufferType &bufType)
function allowing to create a hysteresis parameter for dark hysteresis
#define IPSDKIPLATTRIBUTES_API
Import/Export macro for library IPSDKIPLAttributes.
Definition: IPSDKIPLAttributesExports.h:25