IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
RandomForestFeature.h
1 // RandomForestFeature.h:
3 // ----------------------
4 //
15 
16 #ifndef __IPSDKIPLATTRIBUTES_RANDOMFORESTFEATURE_H__
17 #define __IPSDKIPLATTRIBUTES_RANDOMFORESTFEATURE_H__
18 
22 
23 namespace ipsdk {
24 namespace imaproc {
25 namespace attr {
26 
32 
33 IPSDK_DECLARE_NODE_DATA(IPSDKIPLAttributes, RandomForestFeature,
35  ((LEAF)(ParamX)(ipsdk::ipUInt16))
36  ((LEAF)(ParamY)(ipsdk::ipUInt16))
37  ((LEAF)(ParamZ)(ipsdk::ipUInt16))
38  ((LEAF)(Zoom)(ipsdk::ipReal32)))
39 };
40 
43 
46 typedef boost::shared_ptr<ipsdk::imaproc::attr::RandomForestFeature> RandomForestFeaturePtr;
47 
50 typedef boost::shared_ptr<const ipsdk::imaproc::attr::RandomForestFeature> RandomForestFeatureConstPtr;
51 
54 typedef std::vector<RandomForestFeaturePtr> RandomForestFeatureColl;
55 
58 typedef std::vector<RandomForestFeatureConstPtr> RandomForestFeatureConstColl;
59 
64  const ipsdk::ipUInt16 paramX,
65  const ipsdk::ipUInt16 paramY,
66  const ipsdk::ipUInt16 paramZ,
67  const ipsdk::ipReal32 zoom);
68 
69 
72 
73 } // end of namespace attr
74 } // end of namespace imaproc
75 } // end of namespace ipsdk
76 
77 #endif // __IPSDKIPLATTRIBUTES_RANDOMFORESTFEATURE_H__
#define IPSDK_DECLARE_NODE_DATA(libraryName, className, childSeq)
eRandomForestFeaturesType
Enumerate describing random forest features type.
Definition: RandomForestTypes.h:43
Random forest feature type is gaussian smoothing.
Definition: RandomForestTypes.h:45
boost::shared_ptr< ipsdk::imaproc::attr::RandomForestFeature > RandomForestFeaturePtr
shared pointer to ipsdk::imaproc::RandomForestFeature
Definition: RandomForestFeature.h:188
Definition of import/export macro for library.
Predefined types for random forest classification.
std::vector< RandomForestFeatureConstPtr > RandomForestFeatureConstColl
Collection of ipsdk::imaproc::RandomForestFeatureConstPtr.
Definition: RandomForestFeature.h:200
#define IPSDKIPLATTRIBUTES_API
Import/Export macro for library IPSDKIPLAttributes.
Definition: IPSDKIPLAttributesExports.h:25
std::vector< RandomForestFeaturePtr > RandomForestFeatureColl
Collection of ipsdk::imaproc::RandomForestFeaturePtr.
Definition: RandomForestFeature.h:196
IPSDKIPLATTRIBUTES_API ipsdk::imaproc::attr::RandomForestFeaturePtr createRandomForestFeature(const eRandomForestFeaturesType type, const ipsdk::ipUInt16 paramX, const ipsdk::ipUInt16 paramY, const ipsdk::ipUInt16 paramZ, const ipsdk::ipReal32 zoom)
function allowing to create a random forest feature from its parameters
uint16_t ipUInt16
float ipReal32
boost::shared_ptr< const ipsdk::imaproc::attr::RandomForestFeature > RandomForestFeatureConstPtr
shared pointer to const ipsdk::imaproc::RandomForestFeature
Definition: RandomForestFeature.h:192