IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
PixelPosition.h
1 // PixelPosition.h:
3 // -----------
4 //
15 
16 #ifndef __IPSDKIPLATTRIBUTES_PIXELPOSITION_H__
17 #define __IPSDKIPLATTRIBUTES_PIXELPOSITION_H__
18 
21 
22 namespace ipsdk {
23 namespace imaproc {
24 namespace attr {
25 
31 
32 IPSDK_DECLARE_NODE_DATA(IPSDKIPLAttributes, PixelPosition,
33  ((LEAF)(X)(ipsdk::ipUInt64))
34  ((LEAF)(Y)(ipsdk::ipUInt64))
35  ((LEAF)(Z)(ipsdk::ipUInt64))
36  ((LEAF)(C)(ipsdk::ipUInt64))
37  ((LEAF)(T)(ipsdk::ipUInt64)))
38 
39 // methods
40 public:
42  void set(const ipUInt64 x, const ipUInt64 y, const ipUInt64 z, const ipUInt64 c, const ipUInt64 t);
43 };
44 
47 
50 typedef boost::shared_ptr<ipsdk::imaproc::attr::PixelPosition> PixelPositionPtr;
51 
54 typedef boost::shared_ptr<const ipsdk::imaproc::attr::PixelPosition> PixelPositionConstPtr;
55 
58 
61 createPixelPosition(const ipUInt64 x, const ipUInt64 y, const ipUInt64 z, const ipUInt64 c, const ipUInt64 t);
62 
65 
66 } // end of namespace attr
67 } // end of namespace imaproc
68 } // end of namespace ipsdk
69 
70 #endif // __IPSDKIPLATTRIBUTES_PIXELPOSITION_H__
boost::shared_ptr< const ipsdk::imaproc::attr::PixelPosition > PixelPositionConstPtr
shared pointer to const ipsdk::imaproc::attr::PixelPosition
Definition: PixelPosition.h:196
#define IPSDK_DECLARE_NODE_DATA(libraryName, className, childSeq)
uint64_t ipUInt64
IPSDKIPLATTRIBUTES_API PixelPositionPtr createPixelPosition(const ipUInt64 x, const ipUInt64 y, const ipUInt64 z, const ipUInt64 c, const ipUInt64 t)
function allowing to create new pixel position shared pointer
boost::shared_ptr< ipsdk::imaproc::attr::PixelPosition > PixelPositionPtr
shared pointer to ipsdk::imaproc::attr::PixelPosition
Definition: PixelPosition.h:192
Definition of import/export macro for library.
#define IPSDKIPLATTRIBUTES_API
Import/Export macro for library IPSDKIPLAttributes.
Definition: IPSDKIPLAttributesExports.h:25