IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
RemoveTooCloseCirclesParams.h
1 // RemoveTooCloseCirclesParams.h:
3 // ------------------------------
4 //
15 
16 #ifndef __IPSDKIPLATTRIBUTES_REMOVETOOCLOSECIRCLESPARAMS_H__
17 #define __IPSDKIPLATTRIBUTES_REMOVETOOCLOSECIRCLESPARAMS_H__
18 
21 
22 namespace ipsdk {
23 namespace imaproc {
24 namespace attr {
25 
31 
32 IPSDK_DECLARE_NODE_DATA(IPSDKIPLAttributes, RemoveTooCloseCirclesParams,
33  ((LEAF)(EnabledFlag)(ipsdk::ipBool))
34  ((LEAF)(CirclesProximityRatioThreshold)(ipsdk::ipReal64)))
35 };
36 
39 
42 typedef boost::shared_ptr<ipsdk::imaproc::attr::RemoveTooCloseCirclesParams> RemoveTooCloseCirclesParamsPtr;
43 
46 typedef boost::shared_ptr<const ipsdk::imaproc::attr::RemoveTooCloseCirclesParams> RemoveTooCloseCirclesParamsConstPtr;
47 
50 
56  const ipReal64 ratioThreshold);
57 
63 
66 
67 } // end of namespace attr
68 } // end of namespace imaproc
69 } // end of namespace ipsdk
70 
71 #endif // __IPSDKIPLATTRIBUTES_REMOVETOOCLOSECIRCLESPARAMS_H__
IPSDKIPLATTRIBUTES_API ipsdk::imaproc::attr::RemoveTooCloseCirclesParamsPtr createDisabledRemoveTooCloseCirclesParams()
function allowing to create a RemoveTooCloseCirclesParams data item (circles removing is disabled) ...
#define IPSDK_DECLARE_NODE_DATA(libraryName, className, childSeq)
double ipReal64
IPSDKIPLATTRIBUTES_API ipsdk::imaproc::attr::RemoveTooCloseCirclesParamsPtr createEnabledRemoveTooCloseCirclesParams(const ipReal64 ratioThreshold)
function allowing to create a RemoveTooCloseCirclesParams data item (circles removing is enabled) ...
boost::shared_ptr< const ipsdk::imaproc::attr::RemoveTooCloseCirclesParams > RemoveTooCloseCirclesParamsConstPtr
shared pointer to const ipsdk::imaproc::attr::RemoveTooCloseCirclesParams
Definition: RemoveTooCloseCirclesParams.h:134
Definition of import/export macro for library.
bool ipBool
#define IPSDKIPLATTRIBUTES_API
Import/Export macro for library IPSDKIPLAttributes.
Definition: IPSDKIPLAttributesExports.h:25
boost::shared_ptr< ipsdk::imaproc::attr::RemoveTooCloseCirclesParams > RemoveTooCloseCirclesParamsPtr
shared pointer to ipsdk::imaproc::attr::RemoveTooCloseCirclesParams
Definition: RemoveTooCloseCirclesParams.h:130