IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
BaseOutputImageAttribute.h
1 // BaseOutputImageAttribute.h:
3 // ---------------------------
4 //
14 
15 #ifndef __IPSDKIMAGEPROCESSING_BASEOUTPUTIMAGEATTRIBUTE_H__
16 #define __IPSDKIMAGEPROCESSING_BASEOUTPUTIMAGEATTRIBUTE_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 output data
33 
34 // predefined public types
35 public:
38 
41 
44 
47 
48 // constructor and destructor
49 protected:
52 public:
54  virtual ~BaseOutputImageAttribute() = 0;
55 
56 // methods
57 public:
61  void init(const image::ImagePtr& pImage);
62 
66  image::BaseImage& getImage();
67 
71  ConstStorageType getStorage() const;
72  StorageType getStorage();
73 
74 // attributes
75 protected:
76 
77 };
78 
81 
82 } // end of namespace imaproc
83 } // end of namespace ipsdk
84 
85 #endif // __IPSDKIMAGEPROCESSING_BASEOUTPUTIMAGEATTRIBUTE_H__
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
Base class for image attributes.
Definition: BaseImageAttribute.h:32
boost::shared_ptr< BaseImage > ImagePtr
Definition: ImageTypes.h:139
image::BaseImage ValueType
value type associated to object
Definition: BaseOutputImageAttribute.h:37
#define IPSDK_DECLARE_ABSTRACT_SERIAL_WITHOUT_COPY(libraryName, className)
macro enabling serialization on abstract class
Definition: SerializationHdrMacro.h:97
image::ImagePtr StorageType
storage type associated to object
Definition: BaseOutputImageAttribute.h:40
#define IPSDK_DECLARE_OUTPUT_DATA()
macro allowing to declare an output data
Definition: DataStatusHdrMacros.h:113
image::ImageConstPtr ConstStorageType
const storage type associated to object
Definition: BaseOutputImageAttribute.h:43
#define IPSDKIMAGEPROCESSING_API
Import/Export macro for library IPSDKImageProcessing.
Definition: IPSDKImageProcessingExports.h:25
BaseOutputImageAttribute BaseImageAttributeType
base image attribute class
Definition: BaseOutputImageAttribute.h:46
boost::shared_ptr< const BaseImage > ImageConstPtr
Definition: ImageTypes.h:140
Base class for output image attributes.
Definition: BaseOutputImageAttribute.h:26
Base class for images data type.
Definition: BaseImage.h:43