IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
BaseZStrip3dWithKernelAttribute.h
1 // BaseZStrip3dWithKernelAttribute.h:
3 // ----------------------------------
4 //
15 
16 #ifndef __IPSDKIMAGEPROCESSING_BASEZSTRIP3DWITHKERNELATTRIBUTE_H__
17 #define __IPSDKIMAGEPROCESSING_BASEZSTRIP3DWITHKERNELATTRIBUTE_H__
18 
19 #include <IPSDKImageProcessing/Attribute/Strip/BaseStripAttribute.h>
20 
21 namespace ipsdk {
22 namespace imaproc {
23 
26 
28 {
29  // declare serial class
31 
32 // predefined public type
33 public:
35  static const eStripAttributeType::domain g_stripAttributeType = eStripAttributeType::eSAT_Z3dWithKernel;
36 
37 // constructor and destructor
38 protected:
41 public:
43  virtual ~BaseZStrip3dWithKernelAttribute() = 0;
44 
45 // methods
46 public:
48  eStripAttributeType getStripAttributeType() const;
49 
53  const image::BaseImageZStrip3dWithKernel& getBaseImageZStrip3dWithKernel() const;
54 
59  ipUInt64 getKernelSizeX() const;
60  ipUInt64 getKernelSizeY() const;
61  ipUInt64 getKernelSizeZ() const;
63 
68  ipUInt64 getStartingKernelSizeX() const;
69  ipUInt64 getStartingKernelSizeY() const;
70  ipUInt64 getStartingKernelSizeZ() const;
72 
77  ipUInt64 getEndingKernelSizeX() const;
78  ipUInt64 getEndingKernelSizeY() const;
79  ipUInt64 getEndingKernelSizeZ() const;
81 
86  ipUInt64 getNbMissingStartingPlans() const;
87 
92  ipUInt64 getNbMissingEndingPlans() const;
93 
94 // attributes
95 protected:
96 
97 };
98 
101 
102 inline eStripAttributeType
104 {
105  return g_stripAttributeType;
106 }
107 
110 
111 } // end of namespace imaproc
112 } // end of namespace ipsdk
113 
114 #endif // __IPSDKIMAGEPROCESSING_BASEZSTRIP3DWITHKERNELATTRIBUTE_H__
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
eStripAttributeType
Enumerate describing strip attributes type.
Definition: StripAttributeTypes.h:44
uint64_t ipUInt64
Base types definition.
Definition: BaseTypes.h:55
eStripAttributeType getStripAttributeType() const
retrieve strip attribute type
Definition: BaseZStrip3dWithKernelAttribute.h:103
#define IPSDK_DECLARE_ABSTRACT_SERIAL_WITHOUT_COPY(libraryName, className)
macro enabling serialization on abstract class
Definition: SerializationHdrMacro.h:97
#define IPSDKIMAGEPROCESSING_API
Import/Export macro for library IPSDKImageProcessing.
Definition: IPSDKImageProcessingExports.h:25
Base class for attributes associated to an image 3d strip with splitting along Z axis and a kernel...
Definition: BaseZStrip3dWithKernelAttribute.h:27
Base class for image 3d strip with splitting along Z axis associated to a kernel. ...
Definition: BaseImageZStrip3dWithKernel.h:33
Base class for image strip attributes.
Definition: BaseStripAttribute.h:34
static const eStripAttributeType::domain g_stripAttributeType
strip attribute type
Definition: BaseZStrip3dWithKernelAttribute.h:35
Attribute associated to an XYZ plan strip ordered first in x then in y and then in z and a kernel...
Definition: StripAttributeTypes.h:62