IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
DistWeight2d.h
1 // DistWeight2d.h:
3 // ---------------
4 //
15 
16 #ifndef __IPSDKIPLATTRIBUTES_DISTWEIGHT2D_H__
17 #define __IPSDKIPLATTRIBUTES_DISTWEIGHT2D_H__
18 
21 
22 namespace ipsdk {
23 namespace imaproc {
24 namespace attr {
25 
31 
32 IPSDK_DECLARE_NODE_DATA(IPSDKIPLAttributes, DistWeight2d,
33  ((LEAF)(XWeight)(ipsdk::ipReal64)(1.))
34  ((LEAF)(YWeight)(ipsdk::ipReal64)(1.))
35  ((LEAF)(XYWeight)(ipsdk::ipReal64)(1.)))
36 };
37 
40 
43 typedef boost::shared_ptr<ipsdk::imaproc::attr::DistWeight2d> DistWeight2dPtr;
44 
47 typedef boost::shared_ptr<const ipsdk::imaproc::attr::DistWeight2d> DistWeight2dConstPtr;
48 
51 
58  const ipsdk::ipReal64 yWeight,
59  const ipsdk::ipReal64 xyWeight);
60 
63 
64 } // end of namespace attr
65 } // end of namespace imaproc
66 } // end of namespace ipsdk
67 
68 #endif // __IPSDKIPLATTRIBUTES_DISTWEIGHT2D_H__
#define IPSDK_DECLARE_NODE_DATA(libraryName, className, childSeq)
boost::shared_ptr< ipsdk::imaproc::attr::DistWeight2d > DistWeight2dPtr
shared pointer to ipsdk::imaproc::attr::DistWeight2d
Definition: DistWeight2d.h:149
double ipReal64
IPSDKIPLATTRIBUTES_API DistWeight2dPtr createDistWeight2d(const ipsdk::ipReal64 xWeight, const ipsdk::ipReal64 yWeight, const ipsdk::ipReal64 xyWeight)
function allowing to initialize input parameters for GenericDistanceMap2dImg algorithm ...
Definition of import/export macro for library.
boost::shared_ptr< const ipsdk::imaproc::attr::DistWeight2d > DistWeight2dConstPtr
shared pointer to const ipsdk::imaproc::attr::DistWeight2d
Definition: DistWeight2d.h:153
#define IPSDKIPLATTRIBUTES_API
Import/Export macro for library IPSDKIPLAttributes.
Definition: IPSDKIPLAttributesExports.h:25