ITK  6.0.0
Insight Toolkit
itkPolylineMaskImageFilter.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
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#ifndef itkPolylineMaskImageFilter_h
19#define itkPolylineMaskImageFilter_h
20
23
24namespace itk
25{
37template <typename TInputImage, typename TPolyline, typename TVector, typename TOutputImage>
38class ITK_TEMPLATE_EXPORT PolylineMaskImageFilter : public ImageToImageFilter<TInputImage, TOutputImage>
39{
40public:
41 ITK_DISALLOW_COPY_AND_MOVE(PolylineMaskImageFilter);
42
48
50 itkNewMacro(Self);
51
53 itkOverrideGetNameOfClassMacro(PolylineMaskImageFilter);
54
56 static constexpr unsigned int NDimensions = TInputImage::ImageDimension;
57
58 static constexpr unsigned int InputDimension = 3;
59
61 using InputImageType = TInputImage;
64 using InputImagePixelType = typename InputImageType::PixelType;
67
70
72 using VectorType = TVector;
73
75 using PolylineType = TPolyline;
76
78 using OutputImageType = TOutputImage;
81 using OutputImagePixelType = typename OutputImageType::PixelType;
82
84 void
85 SetInput1(const InputImageType * input);
86
88 void
89 SetInput2(const PolylineType * input);
90
92 itkSetMacro(ViewVector, VectorType);
93 itkGetConstMacro(ViewVector, VectorType);
97 itkSetMacro(UpVector, VectorType);
98 itkGetConstMacro(UpVector, VectorType);
102 itkSetMacro(CameraCenterPoint, PointType);
103 itkGetConstMacro(CameraCenterPoint, PointType);
107 itkSetMacro(FocalDistance, double);
108 itkGetConstMacro(FocalDistance, double);
112 itkSetMacro(FocalPoint, ProjPlanePointType);
113 itkGetConstMacro(FocalPoint, ProjPlanePointType);
117 void
119
123
124#ifdef ITK_USE_CONCEPT_CHECKING
125 // Begin concept checking
127 // End concept checking
128#endif
129
130protected:
132 ~PolylineMaskImageFilter() override = default;
133 void
134 PrintSelf(std::ostream & os, Indent indent) const override;
135
136 void
137 GenerateData() override;
138
139private:
140 VectorType m_ViewVector{};
141 VectorType m_UpVector{};
142
143 MatrixType m_RotationMatrix{};
144
145 PointType m_CameraCenterPoint{};
146
147 ProjPlanePointType m_FocalPoint{};
148
149 double m_FocalDistance{ 0.0 };
150};
151} // end namespace itk
152
153#ifndef ITK_MANUAL_INSTANTIATION
154# include "itkPolylineMaskImageFilter.hxx"
155#endif
156
157#endif
Base class for all process objects that output image data.
typename OutputImageType::PixelType OutputImagePixelType
typename OutputImageType::RegionType OutputImageRegionType
TOutputImage OutputImageType
typename OutputImageType::Pointer OutputImagePointer
Base class for filters that take an image as input and produce an image as output.
typename InputImageType::Pointer InputImagePointer
typename InputImageType::PixelType InputImagePixelType
typename InputImageType::RegionType InputImageRegionType
Control indentation during Print() invocation.
Definition: itkIndent.h:50
Implements image masking operation constrained by a polyline on a plane perpendicular to certain view...
void SetInput2(const PolylineType *input)
ProjPlanePointType TransformProjectPoint(PointType inputPoint)
void SetInput1(const InputImageType *input)
~PolylineMaskImageFilter() override=default
void GenerateData() override
void PrintSelf(std::ostream &os, Indent indent) const override
The base class for all process objects (source, filters, mappers) in the Insight data processing pipe...
SmartPointer< const Self > ConstPointer
SmartPointer< Self > Pointer
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....