IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
BaseInputImageAttribute.h
1 // BaseInputImageAttribute.h:
3 // --------------------------
4 //
14 
15 #ifndef __IPSDKIMAGEPROCESSING_BASEINPUTIMAGEATTRIBUTE_H__
16 #define __IPSDKIMAGEPROCESSING_BASEINPUTIMAGEATTRIBUTE_H__
17 
18 #include <IPSDKImageProcessing/Attribute/Image/BaseImageAttribute.h>
19 
20 namespace ipsdk {
21 namespace imaproc {
22 
25 
27 {
28  // declare serial class
30 
31  // declare input data
33 
34 // predefined public types
35 public:
38 
41 
44 
45 // constructor and destructor
46 protected:
49 public:
51  virtual ~BaseInputImageAttribute() = 0;
52 
53 // methods
54 public:
58  void init(const image::ImageConstPtr& pImage);
59 
63  StorageType getStorage() const;
64 
65 // attributes
66 protected:
67 
68 };
69 
72 
73 } // end of namespace imaproc
74 } // end of namespace ipsdk
75 
76 #endif // __IPSDKIMAGEPROCESSING_BASEINPUTIMAGEATTRIBUTE_H__
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
Base class for image attributes.
Definition: BaseImageAttribute.h:32
image::ImageConstPtr StorageType
storage type associated to object
Definition: BaseInputImageAttribute.h:40
image::BaseImage ValueType
value type associated to object
Definition: BaseInputImageAttribute.h:37
Base class for input image attributes.
Definition: BaseInputImageAttribute.h:26
#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
#define IPSDKIMAGEPROCESSING_API
Import/Export macro for library IPSDKImageProcessing.
Definition: IPSDKImageProcessingExports.h:25
boost::shared_ptr< const BaseImage > ImageConstPtr
Definition: ImageTypes.h:140
BaseInputImageAttribute BaseImageAttributeType
base image attribute class
Definition: BaseInputImageAttribute.h:43
Base class for images data type.
Definition: BaseImage.h:43