IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
RandomForestTree.h
1 // RandomForestTree.h:
3 // -------------------
4 //
15 
16 #ifndef __IPSDKIPLATTRIBUTES_RANDOMFORESTTREE_H__
17 #define __IPSDKIPLATTRIBUTES_RANDOMFORESTTREE_H__
18 
20 #include <IPSDKIPL/IPSDKIPLAttributes/DataItem/RandomForestTreeNode.h>
22 
23 namespace ipsdk {
24 namespace imaproc {
25 namespace attr {
26 
32 
33 IPSDK_DECLARE_NODE_DATA(IPSDKIPLAttributes, RandomForestTree,
34  ((NODE_COLL)(Coll)(ipsdk::imaproc::attr::RandomForestTreeNode)))
35 
36 
37 // methods
38 public:
39  void addTreeNode(const RandomForestTreeNodePtr pTreeNode);
40 };
41 
44 typedef boost::shared_ptr<ipsdk::imaproc::attr::RandomForestTree> RandomForestTreePtr;
45 
48 typedef boost::shared_ptr<const ipsdk::imaproc::attr::RandomForestTree> RandomForestTreeConstPtr;
49 
52 typedef std::vector<RandomForestTreePtr> RandomForestTreeColl;
53 
56 typedef std::vector<RandomForestTreeConstPtr> RandomForestTreeConstColl;
57 
62 
63 
66 
67 } // end of namespace attr
68 } // end of namespace imaproc
69 } // end of namespace ipsdk
70 
71 #endif // __IPSDKIPLATTRIBUTES_RANDOMFORESTTREE_H__
std::vector< RandomForestTreeConstPtr > RandomForestTreeConstColl
Collection of ipsdk::imaproc::RandomForestTree.
Definition: RandomForestTree.h:142
#define IPSDK_DECLARE_NODE_DATA(libraryName, className, childSeq)
boost::shared_ptr< ipsdk::imaproc::attr::RandomForestTree > RandomForestTreePtr
shared pointer to ipsdk::imaproc::RandomForestTree
Definition: RandomForestTree.h:130
IPSDKIPLATTRIBUTES_API ipsdk::imaproc::attr::RandomForestTreePtr createRandomForestTree()
function allowing to create an empty random forest tree
Definition of import/export macro for library.
boost::shared_ptr< const ipsdk::imaproc::attr::RandomForestTree > RandomForestTreeConstPtr
shared pointer to const ipsdk::imaproc::RandomForestTree
Definition: RandomForestTree.h:134
#define IPSDKIPLATTRIBUTES_API
Import/Export macro for library IPSDKIPLAttributes.
Definition: IPSDKIPLAttributesExports.h:25
Describes a node parameters in a random forest tree.
Definition: RandomForestTreeNode.h:66
boost::shared_ptr< ipsdk::imaproc::attr::RandomForestTreeNode > RandomForestTreeNodePtr
shared pointer to ipsdk::imaproc::RandomForestTreeNode
Definition: RandomForestTreeNode.h:224
std::vector< RandomForestTreePtr > RandomForestTreeColl
Collection of ipsdk::imaproc::RandomForestTree.
Definition: RandomForestTree.h:138