RTK  2.6.0
Reconstruction Toolkit
rtkRayQuadricIntersectionImageFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright RTK Consortium
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * https://www.apache.org/licenses/LICENSE-2.0.txt
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  *=========================================================================*/
18 
19 #ifndef rtkRayQuadricIntersectionImageFilter_h
20 #define rtkRayQuadricIntersectionImageFilter_h
21 
23 #include "rtkConfiguration.h"
24 
25 namespace rtk
26 {
27 
37 template <class TInputImage, class TOutputImage>
38 class ITK_TEMPLATE_EXPORT RayQuadricIntersectionImageFilter
39  : public RayConvexIntersectionImageFilter<TInputImage, TOutputImage>
40 {
41 public:
42  ITK_DISALLOW_COPY_AND_MOVE(RayQuadricIntersectionImageFilter);
43 
49 
54 
56  itkNewMacro(Self);
57 
59  itkOverrideGetNameOfClassMacro(RayQuadricIntersectionImageFilter);
60 
62  itkGetMacro(Density, ScalarType);
63  itkSetMacro(Density, ScalarType);
65 
67  itkGetConstReferenceMacro(PlaneDirections, std::vector<VectorType>);
68  itkGetConstReferenceMacro(PlanePositions, std::vector<ScalarType>);
70 
72  void
73  AddClipPlane(const VectorType & dir, const ScalarType & pos);
74 
76  itkGetMacro(A, ScalarType);
78  itkGetMacro(B, ScalarType);
80  itkGetMacro(C, ScalarType);
82  itkGetMacro(D, ScalarType);
84  itkGetMacro(E, ScalarType);
86  itkGetMacro(F, ScalarType);
88  itkGetMacro(G, ScalarType);
90  itkGetMacro(H, ScalarType);
92  itkGetMacro(I, ScalarType);
94  itkGetMacro(J, ScalarType);
97 
98 protected:
100  ~RayQuadricIntersectionImageFilter() override = default;
101 
102  void
103  BeforeThreadedGenerateData() override;
104 
105 private:
106  ScalarType m_Density{ 1. };
107  std::vector<VectorType> m_PlaneDirections;
108  std::vector<ScalarType> m_PlanePositions;
109 
110  ScalarType m_A{ 0. };
111  ScalarType m_B{ 0. };
112  ScalarType m_C{ 0. };
113  ScalarType m_D{ 0. };
114  ScalarType m_E{ 0. };
115  ScalarType m_F{ 0. };
116  ScalarType m_G{ 0. };
117  ScalarType m_H{ 0. };
118  ScalarType m_I{ 0. };
119  ScalarType m_J{ 0. };
120 };
121 
122 } // end namespace rtk
123 
124 #ifndef ITK_MANUAL_INSTANTIATION
125 # include "rtkRayQuadricIntersectionImageFilter.hxx"
126 #endif
127 
128 #endif
itk::Vector< ScalarType, Dimension > VectorType
#define itkSetMacro(name, type)
Analytical projection of a QuadricShape.
itk::Vector< ScalarType, Dimension > PointType