RTK  2.6.0
Reconstruction Toolkit
rtkDrawQuadricImageFilter.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 rtkDrawQuadricImageFilter_h
20 #define rtkDrawQuadricImageFilter_h
21 
23 #include "rtkConfiguration.h"
24 
25 namespace rtk
26 {
27 
37 template <class TInputImage, class TOutputImage>
38 class ITK_TEMPLATE_EXPORT DrawQuadricImageFilter : public DrawConvexImageFilter<TInputImage, TOutputImage>
39 {
40 public:
41  ITK_DISALLOW_COPY_AND_MOVE(DrawQuadricImageFilter);
42 
48 
52 
54  itkNewMacro(Self);
55 
57  itkOverrideGetNameOfClassMacro(DrawQuadricImageFilter);
58 
60  itkGetMacro(Density, ScalarType);
61  itkSetMacro(Density, ScalarType);
63 
65  itkGetConstReferenceMacro(PlaneDirections, std::vector<VectorType>);
66  itkGetConstReferenceMacro(PlanePositions, std::vector<ScalarType>);
68 
70  void
71  AddClipPlane(const VectorType & dir, const ScalarType & pos);
72 
73  itkGetMacro(A, ScalarType);
75  itkGetMacro(B, ScalarType);
77  itkGetMacro(C, ScalarType);
79  itkGetMacro(D, ScalarType);
81  itkGetMacro(E, ScalarType);
83  itkGetMacro(F, ScalarType);
85  itkGetMacro(G, ScalarType);
87  itkGetMacro(H, ScalarType);
89  itkGetMacro(I, ScalarType);
91  itkGetMacro(J, ScalarType);
93 
94 protected:
96  ~DrawQuadricImageFilter() override = default;
97 
98  void
99  BeforeThreadedGenerateData() override;
100 
101 private:
102  ScalarType m_Density{ 1. };
103  std::vector<VectorType> m_PlaneDirections;
104  std::vector<ScalarType> m_PlanePositions;
105 
106  ScalarType m_A{ 0. };
107  ScalarType m_B{ 0. };
108  ScalarType m_C{ 0. };
109  ScalarType m_D{ 0. };
110  ScalarType m_E{ 0. };
111  ScalarType m_F{ 0. };
112  ScalarType m_G{ 0. };
113  ScalarType m_H{ 0. };
114  ScalarType m_I{ 0. };
115  ScalarType m_J{ 0. };
116 };
117 
118 } // end namespace rtk
119 
120 #ifndef ITK_MANUAL_INSTANTIATION
121 # include "rtkDrawQuadricImageFilter.hxx"
122 #endif
123 
124 #endif
ConvexShape::ScalarType ScalarType
itk::Vector< ScalarType, Dimension > VectorType
std::vector< VectorType > m_PlaneDirections
Draws a QuadricShape in a 3D image.
#define itkSetMacro(name, type)
std::vector< ScalarType > m_PlanePositions
Draws a rtk::ConvexShape in a 3D image.