IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
BaseStructuringElementAttribute.h
1 // BaseStructuringElementAttribute.h:
3 // ----------------------------------
4 //
14 
15 #ifndef __IPSDKIMAGEPROCESSING_BASESTRUCTURINGELEMENTATTRIBUTE_H__
16 #define __IPSDKIMAGEPROCESSING_BASESTRUCTURINGELEMENTATTRIBUTE_H__
17 
21 #include <IPSDKImageProcessing/Attribute/BaseImageProcessingAttribute.h>
22 
23 namespace ipsdk {
24 namespace imaproc {
25 
28 
30 {
31  // declare serial class
33 
34  // declare input data
36 
37 // predefined public types
38 public:
40  static const eImageProcessingAttributeType::domain g_imageProcessingAttributeType = eImageProcessingAttributeType::eIPAT_StructuringElement;
41 
42 protected:
45 
46 public:
48  virtual ~BaseStructuringElementAttribute() = 0;
49 
50 // methods
51 public:
53  eImageProcessingAttributeType getImageProcessingAttributeType() const;
54 
56  virtual eStructuringElementType getStructuringElementType() const = 0;
57 
58 // attributes
59 protected:
60 
61 };
62 
65 
68 {
70 }
71 
74 
75 } // end of namespace imaproc
76 } // end of namespace ipsdk
77 
78 #endif // __IPSDKIMAGEPROCESSING_BASESTRUCTURINGELEMENTATTRIBUTE_H__
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
Base class for image processing attributes.
Definition: BaseImageProcessingAttribute.h:28
#define IPSDK_DECLARE_ABSTRACT_SERIAL_WITHOUT_COPY(libraryName, className)
macro enabling serialization on abstract class
Definition: SerializationHdrMacro.h:97
#define IPSDK_DECLARE_INPUT_DATA()
macro allowing to declare an input data
Definition: DataStatusHdrMacros.h:106
Definition of import/export macro for library.
Attribute associated to a binary structuring element.
Definition: ImageProcessingAttributeTypes.h:41
#define IPSDKIMAGEPROCESSING_API
Import/Export macro for library IPSDKImageProcessing.
Definition: IPSDKImageProcessingExports.h:25
eImageProcessingAttributeType
Enumerate describing image attributes type.
Definition: ImageProcessingAttributeTypes.h:33
Base class for structuring element attributes.
Definition: BaseStructuringElementAttribute.h:29
eStructuringElementType
Enumerate describing binary structuring element type.
Definition: StructuringElementTypes.h:37
static const eImageProcessingAttributeType::domain g_imageProcessingAttributeType
image processing attribute type
Definition: BaseStructuringElementAttribute.h:40
Predefined types for structuring element attributes management.
Predefined types for structuring element information management.
eImageProcessingAttributeType getImageProcessingAttributeType() const
retrieve image attribute type
Definition: BaseStructuringElementAttribute.h:67