IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
BaseIntensity3dPreProcessorConfig.h
1 // BaseIntensity3dConfigPreProcessorConfig.h:
3 // ------------------------------------------
4 //
15 
16 #ifndef __IPSDKBASESHAPEANALYSIS_BASEINTENSITY3DPREPROCESSORCONFIG_H__
17 #define __IPSDKBASESHAPEANALYSIS_BASEINTENSITY3DPREPROCESSORCONFIG_H__
18 
20 #include <IPSDKBaseShapeAnalysis/Measure/Info/Config/BaseIntensityPreProcessorConfig.h>
21 
22 namespace ipsdk {
23 namespace shape {
24 namespace analysis {
25 
28 
30 {
31  // declare serial class
33 
34 // predefined public types
35 public:
37  static const bool g_b2dPreProcessing = false;
38 
39 public:
45 
46 // methods
47 public:
49  bool is2dPreProcessing() const;
50 
51 // attributes
52 protected:
53 
54 };
55 
58 
59 inline bool
61 {
62  return g_b2dPreProcessing;
63 }
64 
67 
68 } // end of namespace analysis
69 } // end of namespace shape
70 } // end of namespace ipsdk
71 
72 #endif // __IPSDKBASESHAPEANALYSIS_BASEINTENSITY3DPREPROCESSORCONFIG_H__
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
Base class for objects allowing to define preprocessing configuration for images used as inputs of sh...
Definition: BaseIntensityPreProcessorConfig.h:31
#define IPSDK_DECLARE_ABSTRACT_SERIAL_WITHOUT_COPY(libraryName, className)
macro enabling serialization on abstract class
Definition: SerializationHdrMacro.h:97
Definition of import/export macro for library.
#define IPSDKBASESHAPEANALYSIS_API
Import/Export macro for library IPSDKBaseShapeAnalysis.
Definition: IPSDKBaseShapeAnalysisExports.h:25
static const bool g_b2dPreProcessing
flag indicating whether preprocessing is 2d or 3d
Definition: BaseIntensity3dPreProcessorConfig.h:37
bool is2dPreProcessing() const
retrieve flag indicating whether preprocessing is 2d or 3d
Definition: BaseIntensity3dPreProcessorConfig.h:60
Base class for objects allowing to define preprocessing configuration for 3d images used as inputs of...
Definition: BaseIntensity3dPreProcessorConfig.h:29