IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
InputShapeMeasureSetAttribute.h
1 // InputShapeMeasureSetAttribute.h:
3 // --------------------------------
4 //
14 
15 #ifndef __IPSDKIMAGEPROCESSING_INPUTSHAPEMEASURESETATTRIBUTE_H__
16 #define __IPSDKIMAGEPROCESSING_INPUTSHAPEMEASURESETATTRIBUTE_H__
17 
18 // suppression warnings
19 // warning C4251: 'ipsdk::imaproc::InputShapeMeasureSetAttribute::_pMeasureSet' : class 'boost::shared_ptr<T>' needs to have dll-interface to be used by clients of class 'ipsdk::imaproc::InputShapeMeasureSetAttribute'
20 #pragma warning (push)
21 #pragma warning (disable : 4251)
22 
23 #include <IPSDKImageProcessing/Attribute/ShapeMeasureSet/BaseShapeMeasureSetAttribute.h>
24 
25 namespace ipsdk {
26 namespace imaproc {
27 
30 
32 {
33  // declare serial class
35 
36  // declare input data
38 
39 // predefined public types
40 public:
43 
44 protected:
47 
48 public:
50  virtual ~InputShapeMeasureSetAttribute() = 0;
51 
52 // methods
53 public:
55  void init(const StorageType& pMeasureSet);
56 
60  const ValueType& getMeasureSet() const;
61 
65  StorageType getStorage() const;
66 
68  void clearDerived();
69 
70 // attributes
71 protected:
74 };
75 
78 
79 #pragma warning (pop)
80 
81 } // end of namespace imaproc
82 } // end of namespace ipsdk
83 
84 #endif // __IPSDKIMAGEPROCESSING_INPUTSHAPEMEASURESETATTRIBUTE_H__
ipsdk::shape::analysis::MeasureSetConstPtr StorageType
storage type for attribute familly
Definition: InputShapeMeasureSetAttribute.h:42
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
Base class for shape measure set attributes.
Definition: BaseShapeMeasureSetAttribute.h:27
StorageType _pMeasureSet
shape measure set collection associated to attribute
Definition: InputShapeMeasureSetAttribute.h:73
#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
Object allowing to agregate a collection of measure.
Definition: MeasureSet.h:38
#define IPSDKIMAGEPROCESSING_API
Import/Export macro for library IPSDKImageProcessing.
Definition: IPSDKImageProcessingExports.h:25
Base class for input shape measure set attributes.
Definition: InputShapeMeasureSetAttribute.h:31
boost::shared_ptr< const MeasureSet > MeasureSetConstPtr
shared pointer to const shape measure set
Definition: MeasureTypes.h:100