IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
InputImageYStrip2d.h
1 // InputImageYStrip2d.h:
3 // ---------------------
4 //
14 
15 #ifndef __IPSDKIMAGE_INPUTIMAGEYSTRIP2D_H__
16 #define __IPSDKIMAGE_INPUTIMAGEYSTRIP2D_H__
17 
18 #include <IPSDKImage/Fragment/Strip/YStrip2d/BaseImageYStrip2d.h>
19 
20 namespace ipsdk {
21 namespace image {
22 
25 
27 {
28  // declare serial class
30 
31  // declare input data
33 
34  // friend class for protected members access
35  friend struct ImageStripExtractor;
36 
37 // predefined public types
38 public:
39  // Image support type
40  typedef const BaseImage ImageType;
41 
42  // Input storage type associated to strip
43  typedef PlanStorageConstPtr InputStorageType;
44 
45 public:
51 
52 // methods
53 public:
54  //-----------------------------------
57  //-----------------------------------
58 
65  BoolResult readFromImage() const;
67 
68 protected:
70  void init(const ipUInt64 zPlanIdx,
71  const ipUInt64 cPlanIdx,
72  const ipUInt64 tPlanIdx,
73  const ipUInt64 stripStartOffsetY,
74  const ipUInt64 stripSizeY,
75  const eStripAllocationType& stripAllocationType,
76  const eStripParsingDirection& stripParsingDirection,
77  const PlanStorageConstPtr& pPlanStorage,
78  const DataIdentifierConstPtr& pImageIdentifier,
79  const DataItemMapConstPtr& pImageHeader);
80 
81 // attributes
82 protected:
83 
84 };
85 
88 
89 } // end of namespace image
90 } // end of namespace ipsdk
91 
92 #endif // __IPSDKIMAGE_INPUTIMAGEYSTRIP2D_H__
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
uint64_t ipUInt64
Base types definition.
Definition: BaseTypes.h:55
#define IPSDK_DECLARE_INPUT_DATA()
macro allowing to declare an input data
Definition: DataStatusHdrMacros.h:106
eStripAllocationType
Enumerate describing image strip allocation policy.
Definition: ImageStripTypes.h:88
#define IPSDK_DECLARE_SERIAL_WITHOUT_COPY(libraryName, className)
macro enabling serialization on class
Definition: SerializationHdrMacro.h:79
boost::shared_ptr< const BasePlanStorage > PlanStorageConstPtr
shared pointer to const image plan storage
Definition: PlanStorageTypes.h:58
Structure used to extract image strips from an image.
Definition: ImageStripExtractor.h:31
boost::shared_ptr< const DataItemMap > DataItemMapConstPtr
shared pointer to const DataItemMap
Definition: DataItemTypes.h:170
#define IPSDKIMAGE_API
Import/Export macro for library IPSDKImage.
Definition: IPSDKImageExports.h:27
eStripParsingDirection
Enumerate describing strip parsing direction.
Definition: ImageStripTypes.h:72
boost::shared_ptr< const DataIdentifier > DataIdentifierConstPtr
shared pointer to const data identifier
Definition: DataIdentifierTypes.h:31
Base class for image 2d strip with splitting along Y axis.
Definition: BaseImageYStrip2d.h:37
Base class for images data type.
Definition: BaseImage.h:43
Input class for image 2d strip with splitting along Y axis.
Definition: InputImageYStrip2d.h:26