IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
BaseYStripSeq2dAttribute.h
1 // BaseYStripSeq2dAttribute.h:
3 // ---------------------------
4 //
15 
16 #ifndef __IPSDKIMAGEPROCESSING_BASEYSTRIPSEQ2DATTRIBUTE_H__
17 #define __IPSDKIMAGEPROCESSING_BASEYSTRIPSEQ2DATTRIBUTE_H__
18 
19 #include <IPSDKImageProcessing/Attribute/Strip/BaseStripAttribute.h>
20 
21 namespace ipsdk {
22 namespace imaproc {
23 
26 
28 {
29  // declare serial class
31 
32 // predefined public type
33 public:
35  static const eStripAttributeType::domain g_stripAttributeType = eStripAttributeType::eSAT_YSeq2d;
36 
37 // constructor and destructor
38 protected:
41 public:
43  virtual ~BaseYStripSeq2dAttribute() = 0;
44 
45 // methods
46 public:
48  eStripAttributeType getStripAttributeType() const;
49 
53  const image::BaseImageYStripSeq2d& getBaseImageYStripSeq2d() const;
54 
55 // attributes
56 protected:
57 
58 };
59 
62 
65 {
66  return g_stripAttributeType;
67 }
68 
71 
72 } // end of namespace imaproc
73 } // end of namespace ipsdk
74 
75 #endif // __IPSDKIMAGEPROCESSING_BASEYSTRIPSEQ2DATTRIBUTE_H__
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
Base class for sequence image 2d strip with splitting along X axis attributes.
Definition: BaseYStripSeq2dAttribute.h:27
eStripAttributeType
Enumerate describing strip attributes type.
Definition: StripAttributeTypes.h:44
eStripAttributeType getStripAttributeType() const
retrieve strip attribute type
Definition: BaseYStripSeq2dAttribute.h:64
#define IPSDK_DECLARE_ABSTRACT_SERIAL_WITHOUT_COPY(libraryName, className)
macro enabling serialization on abstract class
Definition: SerializationHdrMacro.h:97
static const eStripAttributeType::domain g_stripAttributeType
strip attribute type
Definition: BaseYStripSeq2dAttribute.h:35
#define IPSDKIMAGEPROCESSING_API
Import/Export macro for library IPSDKImageProcessing.
Definition: IPSDKImageProcessingExports.h:25
Attribute associated to a sequence of XY plan strip ordered first in x then in y and a kernel...
Definition: StripAttributeTypes.h:58
Base class for sequence image 2d strip with splitting along Y axis.
Definition: BaseImageYStripSeq2d.h:32
Base class for image strip attributes.
Definition: BaseStripAttribute.h:34