IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
ClusterPpties.h
1 // ClusterPpties.h:
3 // ----------------
4 //
15 
16 #ifndef __IPSDKIPLATTRIBUTES_CLUSTERPPTIES_H__
17 #define __IPSDKIPLATTRIBUTES_CLUSTERPPTIES_H__
18 
21 
22 namespace ipsdk {
23 namespace imaproc {
24 namespace attr {
25 
31 
32 IPSDK_DECLARE_NODE_DATA(IPSDKIPLAttributes, ClusterPpties,
33  ((LEAF_COLL)(Center)(ipsdk::ipReal64))
34  ((LEAF_COLL)(StdDeviations)(ipsdk::ipReal64))
35  ((LEAF)(Compactness)(ipsdk::ipReal64)))
36 };
37 
40 
43 typedef boost::shared_ptr<ipsdk::imaproc::attr::ClusterPpties> ClusterPptiesPtr;
44 
47 typedef boost::shared_ptr<const ipsdk::imaproc::attr::ClusterPpties> ClusterPptiesConstPtr;
48 
53 createClusterPpties(const std::vector<ipReal64>& centerCoordinates);
54 
57  const std::vector<ipReal64>& centerCoordinates,
58  const std::vector<ipReal64>& stdDeviations,
59  const ipReal64 compactness);
61 
64 
65 } // end of namespace attr
66 } // end of namespace imaproc
67 } // end of namespace ipsdk
68 
69 #endif // __IPSDKIPLATTRIBUTES_CLUSTERPPTIES_H__
#define IPSDK_DECLARE_NODE_DATA(libraryName, className, childSeq)
double ipReal64
boost::shared_ptr< const ipsdk::imaproc::attr::ClusterPpties > ClusterPptiesConstPtr
shared pointer to const ipsdk::imaproc::attr::ClusterPpties
Definition: ClusterPpties.h:177
IPSDKIPLATTRIBUTES_API ipsdk::imaproc::attr::ClusterPptiesPtr createClusterPpties(const std::vector< ipReal64 > &centerCoordinates, const std::vector< ipReal64 > &stdDeviations, const ipReal64 compactness)
function allowing to create a ClusterPpties data item
Definition of import/export macro for library.
#define IPSDKIPLATTRIBUTES_API
Import/Export macro for library IPSDKIPLAttributes.
Definition: IPSDKIPLAttributesExports.h:25
boost::shared_ptr< ipsdk::imaproc::attr::ClusterPpties > ClusterPptiesPtr
shared pointer to ipsdk::imaproc::attr::ClusterPpties
Definition: ClusterPpties.h:173