IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
BaseBorderPolicyAttribute.h
1 // BaseBorderPolicyAttribute.h:
3 // ----------------------------
4 //
15 
16 #ifndef __IPSDKIMAGEPROCESSING_BASEBORDERPOLICYATTRIBUTE_H__
17 #define __IPSDKIMAGEPROCESSING_BASEBORDERPOLICYATTRIBUTE_H__
18 
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_BorderPolicy;
41 
42 protected:
45 
46 public:
48  virtual ~BaseBorderPolicyAttribute() = 0;
49 
50 // methods
51 public:
53  eImageProcessingAttributeType getImageProcessingAttributeType() const;
54 
55 // attributes
56 protected:
57 
58 };
59 
62 
65 {
67 }
68 
71 
72 } // end of namespace imaproc
73 } // end of namespace ipsdk
74 
75 #endif // __IPSDKIMAGEPROCESSING_BASEBORDERPOLICYATTRIBUTE_H__
Predefined types for border policy attributes management.
Base class for attributes allowing to define a policy for strip borders preparation during a kernel a...
Definition: BaseBorderPolicyAttribute.h:29
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
eImageProcessingAttributeType getImageProcessingAttributeType() const
retrieve image attribute type
Definition: BaseBorderPolicyAttribute.h:64
Base class for image processing attributes.
Definition: BaseImageProcessingAttribute.h:28
Attribute associated to a border policy.
Definition: ImageProcessingAttributeTypes.h:37
#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.
#define IPSDKIMAGEPROCESSING_API
Import/Export macro for library IPSDKImageProcessing.
Definition: IPSDKImageProcessingExports.h:25
eImageProcessingAttributeType
Enumerate describing image attributes type.
Definition: ImageProcessingAttributeTypes.h:33
static const eImageProcessingAttributeType::domain g_imageProcessingAttributeType
image processing attribute type
Definition: BaseBorderPolicyAttribute.h:40