IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
ScaleFactor3d.h
1 // ScaleFactor3d.h:
3 // --------
4 //
15 
16 #ifndef __IPSDKIPLATTRIBUTES_SCALEFACTOR3D_H__
17 #define __IPSDKIPLATTRIBUTES_SCALEFACTOR3D_H__
18 
22 
23 namespace ipsdk {
24 namespace imaproc {
25 namespace attr {
26 
32 
33 IPSDK_DECLARE_NODE_DATA(IPSDKIPLAttributes, ScaleFactor3d,
34  ((LEAF)(XFactor)(ipsdk::ipReal64))
35  ((LEAF)(YFactor)(ipsdk::ipReal64))
36  ((LEAF)(ZFactor)(ipsdk::ipReal64)))
37 };
38 
41 
44 typedef boost::shared_ptr<ipsdk::imaproc::attr::ScaleFactor3d> ScaleFactor3dPtr;
45 
48 typedef boost::shared_ptr<const ipsdk::imaproc::attr::ScaleFactor3d> ScaleFactor3dConstPtr;
49 
52 
57  const ipsdk::ipReal64 yFactor,
58  const ipsdk::ipReal64 zFactor);
59 
62 
63 } // end of namespace attr
64 } // end of namespace imaproc
65 } // end of namespace ipsdk
66 
67 #endif // __IPSDKIPLATTRIBUTES_SCALEFACTOR3D_H__
#define IPSDK_DECLARE_NODE_DATA(libraryName, className, childSeq)
IPSDKIPLATTRIBUTES_API ipsdk::imaproc::attr::ScaleFactor3dPtr createScaleFactor3d(const ipsdk::ipReal64 xFactor, const ipsdk::ipReal64 yFactor, const ipsdk::ipReal64 zFactor)
function allowing to create a ScaleFactor3d data item from a xFactor, a yFactor and a zFactor value ...
double ipReal64
boost::shared_ptr< const ipsdk::imaproc::attr::ScaleFactor3d > ScaleFactor3dConstPtr
shared pointer to const ipsdk::imaproc::attr::ScaleFactor3d
Definition: ScaleFactor3d.h:154
boost::shared_ptr< ipsdk::imaproc::attr::ScaleFactor3d > ScaleFactor3dPtr
shared pointer to ipsdk::imaproc::attr::ScaleFactor3d
Definition: ScaleFactor3d.h:150
Definition of import/export macro for library.
#define IPSDKIPLATTRIBUTES_API
Import/Export macro for library IPSDKIPLAttributes.
Definition: IPSDKIPLAttributesExports.h:25