Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef __itkFrustumSpatialFunction_h
00018 #define __itkFrustumSpatialFunction_h
00019
00020 #include "itkInteriorExteriorSpatialFunction.h"
00021
00022 namespace itk
00023 {
00024
00036 template <unsigned int VImageDimension=3,typename TInput=Point<double,3> >
00037 class ITK_EXPORT FrustumSpatialFunction :
00038 public InteriorExteriorSpatialFunction<VImageDimension,TInput>
00039 {
00040 public:
00041
00043 typedef FrustumSpatialFunction<VImageDimension,TInput> Self;
00044 typedef InteriorExteriorSpatialFunction<VImageDimension,TInput> Superclass;
00045 typedef SmartPointer<Self> Pointer;
00046 typedef SmartPointer<const Self> ConstPointer;
00047
00049 itkTypeMacro(FrustumSpatialFunction,InteriorExteriorSpatialFunction);
00050
00052 itkNewMacro(Self);
00053
00055 typedef typename Superclass::InputType InputType;
00056
00058 typedef typename Superclass::OutputType OutputType;
00059
00061 typedef enum{
00062 RotateInXZPlane=1,
00063 RotateInYZPlane
00064 } FrustumRotationPlaneType;
00065
00067 OutputType Evaluate(const InputType& position) const;
00068
00070 itkGetConstMacro( Apex, InputType);
00071 itkSetMacro( Apex, InputType);
00073
00076 itkGetConstMacro( AngleZ, double);
00077 itkSetMacro( AngleZ, double);
00079
00081 itkGetConstMacro( ApertureAngleX, double);
00082 itkSetMacro( ApertureAngleX, double);
00084
00086 itkGetConstMacro( ApertureAngleY, double);
00087 itkSetMacro( ApertureAngleY, double);
00089
00091 itkGetConstMacro( TopPlane, double);
00092 itkSetMacro( TopPlane, double);
00094
00096 itkGetConstMacro( BottomPlane, double);
00097 itkSetMacro( BottomPlane, double);
00099
00101 itkSetMacro( RotationPlane, FrustumRotationPlaneType );
00102
00103 protected:
00104 FrustumSpatialFunction();
00105 virtual ~FrustumSpatialFunction();
00106 void PrintSelf(std::ostream& os, Indent indent) const;
00107
00108 private:
00109 FrustumSpatialFunction(const Self&);
00110 void operator=(const Self&);
00111
00113 InputType m_Apex;
00114
00116 double m_AngleZ;
00117
00119 double m_ApertureAngleX;
00120
00122 double m_ApertureAngleY;
00123
00125 double m_TopPlane;
00126
00128 double m_BottomPlane;
00129
00131 FrustumRotationPlaneType m_RotationPlane;
00132
00133 };
00134
00135 }
00136
00137
00138 #define ITK_TEMPLATE_FrustumSpatialFunction(_, EXPORT, x, y) namespace itk { \
00139 _(2(class EXPORT FrustumSpatialFunction< ITK_TEMPLATE_2 x >)) \
00140 namespace Templates { typedef FrustumSpatialFunction< ITK_TEMPLATE_2 x > \
00141 FrustumSpatialFunction##y; } \
00142 }
00143
00144 #if ITK_TEMPLATE_EXPLICIT
00145 # include "Templates/itkFrustumSpatialFunction+-.h"
00146 #endif
00147
00148 #if ITK_TEMPLATE_TXX
00149 # include "itkFrustumSpatialFunction.txx"
00150 #endif
00151
00152 #endif
00153