RTK  2.6.0
Reconstruction Toolkit
rtkRayBoxIntersectionImageFilter.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 rtkRayBoxIntersectionImageFilter_h
20 #define rtkRayBoxIntersectionImageFilter_h
21 
23 #include "rtkConfiguration.h"
24 #include "rtkBoxShape.h"
25 
26 namespace rtk
27 {
28 
38 template <class TInputImage, class TOutputImage>
39 class ITK_TEMPLATE_EXPORT RayBoxIntersectionImageFilter
40  : public RayConvexIntersectionImageFilter<TInputImage, TOutputImage>
41 {
42 public:
43  ITK_DISALLOW_COPY_AND_MOVE(RayBoxIntersectionImageFilter);
44 
50 
57 
59  itkNewMacro(Self);
60 
62  itkOverrideGetNameOfClassMacro(RayBoxIntersectionImageFilter);
63 
65  itkGetMacro(Density, ScalarType);
66  itkSetMacro(Density, ScalarType);
68 
70  itkGetConstReferenceMacro(PlaneDirections, std::vector<VectorType>);
71  itkGetConstReferenceMacro(PlanePositions, std::vector<ScalarType>);
73 
75  void
76  AddClipPlane(const VectorType & dir, const ScalarType & pos);
77 
79  void
80  SetBoxFromImage(const ImageBaseType * _arg, bool bWithExternalHalfPixelBorder = true);
81 
83  itkGetMacro(BoxMin, PointType);
84  itkSetMacro(BoxMin, PointType);
85  itkGetMacro(BoxMax, PointType);
86  itkSetMacro(BoxMax, PointType);
87  itkGetMacro(Direction, RotationMatrixType);
88  itkSetMacro(Direction, RotationMatrixType);
90 
91 protected:
93  ~RayBoxIntersectionImageFilter() override = default;
94 
95  void
96  BeforeThreadedGenerateData() override;
97 
98 private:
99  ScalarType m_Density{ 1. };
100  std::vector<VectorType> m_PlaneDirections;
101  std::vector<ScalarType> m_PlanePositions;
102 
103  PointType m_BoxMin{ 0. };
104  PointType m_BoxMax{ 0. };
106 };
107 
108 } // end namespace rtk
109 
110 #ifndef ITK_MANUAL_INSTANTIATION
111 # include "rtkRayBoxIntersectionImageFilter.hxx"
112 #endif
113 
114 #endif
Superclass::VectorType VectorType
Definition: rtkBoxShape.h:57
Analytical projection of a BoxShape.
itk::ImageBase< Dimension > ImageBaseType
Definition: rtkBoxShape.h:59
#define itkSetMacro(name, type)
Superclass::PointType PointType
Definition: rtkBoxShape.h:56
Superclass::ScalarType ScalarType
Definition: rtkBoxShape.h:55
Superclass::RotationMatrixType RotationMatrixType
Definition: rtkBoxShape.h:58