ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
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;
62 using InputImagePointer = typename InputImageType::ConstPointer;
63 using InputImageRegionType = typename InputImageType::RegionType;
64 using InputImagePixelType = typename InputImageType::PixelType;
67
70
72 using VectorType = TVector;
73
75 using PolylineType = TPolyline;
76
78 using OutputImageType = TOutputImage;
79 using OutputImagePointer = typename OutputImageType::Pointer;
80 using OutputImageRegionType = typename OutputImageType::RegionType;
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);
95
97 itkSetMacro(UpVector, VectorType);
98 itkGetConstMacro(UpVector, VectorType);
100
102 itkSetMacro(CameraCenterPoint, PointType);
103 itkGetConstMacro(CameraCenterPoint, PointType);
105
107 itkSetMacro(FocalDistance, double);
108 itkGetConstMacro(FocalDistance, double);
110
112 itkSetMacro(FocalPoint, ProjPlanePointType);
113 itkGetConstMacro(FocalPoint, ProjPlanePointType);
115
117 void
119
123
125
126protected:
128 ~PolylineMaskImageFilter() override = default;
129 void
130 PrintSelf(std::ostream & os, Indent indent) const override;
131
132 void
133 GenerateData() override;
134
135private:
138
140
142
144
145 double m_FocalDistance{ 0.0 };
146};
147} // end namespace itk
148
149#ifndef ITK_MANUAL_INSTANTIATION
150# include "itkPolylineMaskImageFilter.hxx"
151#endif
152
153#endif
Control indentation during Print() invocation.
Definition itkIndent.h:50
A templated class holding a M x N size Matrix.
Definition itkMatrix.h:53
A templated class holding a geometric point in n-Dimensional space.
Definition itkPoint.h:54
void SetInput2(const PolylineType *input)
typename OutputImageType::Pointer OutputImagePointer
ProjPlanePointType TransformProjectPoint(PointType inputPoint)
typename InputImageType::RegionType InputImageRegionType
void SetInput1(const InputImageType *input)
typename OutputImageType::PixelType OutputImagePixelType
typename InputImageType::PixelType InputImagePixelType
static constexpr unsigned int NDimensions
SmartPointer< const Self > ConstPointer
Matrix< double, Self::InputDimension, Self::InputDimension > MatrixType
~PolylineMaskImageFilter() override=default
typename OutputImageType::RegionType OutputImageRegionType
void GenerateData() override
void PrintSelf(std::ostream &os, Indent indent) const override
typename InputImageType::ConstPointer InputImagePointer
static constexpr unsigned int InputDimension
ImageToImageFilter< TInputImage, TOutputImage > Superclass
Implements transparent reference counting.
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....