IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
BaseYStrip3dAttribute.h
1 // BaseYStrip3dAttribute.h:
3 // ------------------------
4 //
14 
15 #ifndef __IPSDKIMAGEPROCESSING_BASEYSTRIP3DATTRIBUTE_H__
16 #define __IPSDKIMAGEPROCESSING_BASEYSTRIP3DATTRIBUTE_H__
17 
18 #include <IPSDKImageProcessing/Attribute/Strip/BaseStripAttribute.h>
19 
20 namespace ipsdk {
21 namespace imaproc {
22 
25 
27 {
28  // declare serial class
30 
31 // predefined public type
32 public:
34  static const eStripAttributeType::domain g_stripAttributeType = eStripAttributeType::eSAT_Y3d;
35 
36 // constructor and destructor
37 protected:
40 public:
42  virtual ~BaseYStrip3dAttribute() = 0;
43 
44 // methods
45 public:
47  eStripAttributeType getStripAttributeType() const;
48 
52  const image::BaseImageYStrip3d& getBaseImageYStrip3d() const;
53 
54 // attributes
55 protected:
56 
57 };
58 
61 
64 {
65  return g_stripAttributeType;
66 }
67 
70 
71 } // end of namespace imaproc
72 } // end of namespace ipsdk
73 
74 #endif // __IPSDKIMAGEPROCESSING_BASEYSTRIP3DATTRIBUTE_H__
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
eStripAttributeType
Enumerate describing strip attributes type.
Definition: StripAttributeTypes.h:44
Base class for image 3d strip with splitting along Y axis.
Definition: BaseImageYStrip3d.h:33
#define IPSDK_DECLARE_ABSTRACT_SERIAL_WITHOUT_COPY(libraryName, className)
macro enabling serialization on abstract class
Definition: SerializationHdrMacro.h:97
#define IPSDKIMAGEPROCESSING_API
Import/Export macro for library IPSDKImageProcessing.
Definition: IPSDKImageProcessingExports.h:25
static const eStripAttributeType::domain g_stripAttributeType
strip attribute type
Definition: BaseYStrip3dAttribute.h:34
Attribute associated to an XYZ plan strip ordered first in x then in z and then in y...
Definition: StripAttributeTypes.h:54
eStripAttributeType getStripAttributeType() const
retrieve strip attribute type
Definition: BaseYStrip3dAttribute.h:63
Base class for image strip attributes.
Definition: BaseStripAttribute.h:34
Base class for image 3d strip with splitting along Y axis attributes.
Definition: BaseYStrip3dAttribute.h:26