IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
DistWeight3d.h
1 // DistWeight3d.h:
3 // ---------------
4 //
15 
16 #ifndef __IPSDKIPLATTRIBUTES_DISTWEIGHT3D_H__
17 #define __IPSDKIPLATTRIBUTES_DISTWEIGHT3D_H__
18 
21 
22 namespace ipsdk {
23 namespace imaproc {
24 namespace attr {
25 
31 
32 IPSDK_DECLARE_NODE_DATA(IPSDKIPLAttributes, DistWeight3d,
33  ((LEAF)(XWeight)(ipsdk::ipReal64)(1.))
34  ((LEAF)(YWeight)(ipsdk::ipReal64)(1.))
35  ((LEAF)(ZWeight)(ipsdk::ipReal64)(1.))
36  ((LEAF)(XYWeight)(ipsdk::ipReal64)(1.))
37  ((LEAF)(XZWeight)(ipsdk::ipReal64)(1.))
38  ((LEAF)(YZWeight)(ipsdk::ipReal64)(1.))
39  ((LEAF)(XYZWeight)(ipsdk::ipReal64)(1.)))
40 };
41 
44 
47 typedef boost::shared_ptr<ipsdk::imaproc::attr::DistWeight3d> DistWeight3dPtr;
48 
51 typedef boost::shared_ptr<const ipsdk::imaproc::attr::DistWeight3d> DistWeight3dConstPtr;
52 
55 
62  const ipsdk::ipReal64 yWeight,
63  const ipsdk::ipReal64 zWeight,
64  const ipsdk::ipReal64 xyWeight,
65  const ipsdk::ipReal64 xzWeight,
66  const ipsdk::ipReal64 yzWeight,
67  const ipsdk::ipReal64 xyzWeight);
68 
71 
72 } // end of namespace attr
73 } // end of namespace imaproc
74 } // end of namespace ipsdk
75 
76 #endif // __IPSDKIPLATTRIBUTES_DISTWEIGHT3D_H__
#define IPSDK_DECLARE_NODE_DATA(libraryName, className, childSeq)
double ipReal64
Definition of import/export macro for library.
boost::shared_ptr< const ipsdk::imaproc::attr::DistWeight3d > DistWeight3dConstPtr
shared pointer to const ipsdk::imaproc::attr::DistWeight3d
Definition: DistWeight3d.h:229
#define IPSDKIPLATTRIBUTES_API
Import/Export macro for library IPSDKIPLAttributes.
Definition: IPSDKIPLAttributesExports.h:25
IPSDKIPLATTRIBUTES_API DistWeight3dPtr createDistWeight3d(const ipsdk::ipReal64 xWeight, const ipsdk::ipReal64 yWeight, const ipsdk::ipReal64 zWeight, const ipsdk::ipReal64 xyWeight, const ipsdk::ipReal64 xzWeight, const ipsdk::ipReal64 yzWeight, const ipsdk::ipReal64 xyzWeight)
function allowing to initialize input parameters for GenericDistanceMap3dImg algorithm ...
boost::shared_ptr< ipsdk::imaproc::attr::DistWeight3d > DistWeight3dPtr
shared pointer to ipsdk::imaproc::attr::DistWeight3d
Definition: DistWeight3d.h:225