IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
StatsResult.h
1 // StatsResult.h:
3 // --------------
4 //
15 
16 #ifndef __IPSDKIPLATTRIBUTES_STATSRESULT_H__
17 #define __IPSDKIPLATTRIBUTES_STATSRESULT_H__
18 
21 
22 namespace ipsdk {
23 namespace imaproc {
24 namespace attr {
25 
31 
32 IPSDK_DECLARE_NODE_DATA(IPSDKIPLAttributes, StatsResult,
33  ((LEAF)(PixCount)(ipsdk::ipUInt64))
34  ((LEAF)(Sum)(ipsdk::ipReal64))
35  ((LEAF)(Mean)(ipsdk::ipReal64))
36  ((LEAF)(Min)(ipsdk::ipReal64))
37  ((LEAF)(Max)(ipsdk::ipReal64))
38  ((LEAF)(StdDev)(ipsdk::ipReal64)))
39 };
40 
43 
46 typedef boost::shared_ptr<ipsdk::imaproc::attr::StatsResult> StatsResultPtr;
47 
50 typedef boost::shared_ptr<const ipsdk::imaproc::attr::StatsResult> StatsResultConstPtr;
51 
54 
55 } // end of namespace attr
56 } // end of namespace imaproc
57 } // end of namespace ipsdk
58 
59 #endif // __IPSDKIPLATTRIBUTES_STATSRESULT_H__
#define IPSDK_DECLARE_NODE_DATA(libraryName, className, childSeq)
uint64_t ipUInt64
boost::shared_ptr< const ipsdk::imaproc::attr::StatsResult > StatsResultConstPtr
shared pointer to const ipsdk::imaproc::attr::StatsResult
Definition: StatsResult.h:210
double ipReal64
Definition of import/export macro for library.
boost::shared_ptr< ipsdk::imaproc::attr::StatsResult > StatsResultPtr
shared pointer to ipsdk::imaproc::attr::StatsResult
Definition: StatsResult.h:206