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
22
23namespace itk
24{
36template <typename TInputImage, typename TPolyline, typename TVector, typename TOutputImage>
37class ITK_TEMPLATE_EXPORT PolylineMaskImageFilter : public ImageToImageFilter<TInputImage, TOutputImage>
38{
39public:
40 ITK_DISALLOW_COPY_AND_MOVE(PolylineMaskImageFilter);
41
47
49 itkNewMacro(Self);
50
52 itkOverrideGetNameOfClassMacro(PolylineMaskImageFilter);
53
55 static constexpr unsigned int NDimensions = TInputImage::ImageDimension;
56
57 static constexpr unsigned int InputDimension = 3;
58
60 using InputImageType = TInputImage;
61 using InputImagePointer = typename InputImageType::ConstPointer;
62 using InputImageRegionType = typename InputImageType::RegionType;
63 using InputImagePixelType = typename InputImageType::PixelType;
66
69
71 using VectorType = TVector;
72
74 using PolylineType = TPolyline;
75
77 using OutputImageType = TOutputImage;
78 using OutputImagePointer = typename OutputImageType::Pointer;
79 using OutputImageRegionType = typename OutputImageType::RegionType;
80 using OutputImagePixelType = typename OutputImageType::PixelType;
81
83 void
84 SetInput1(const InputImageType * input);
85
87 void
88 SetInput2(const PolylineType * input);
89
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);
116 void
118
122
124
125protected:
127 ~PolylineMaskImageFilter() override = default;
128 void
129 PrintSelf(std::ostream & os, Indent indent) const override;
130
131 void
132 GenerateData() override;
133
134private:
137
139
141
143
144 double m_FocalDistance{ 0.0 };
145};
146} // end namespace itk
147
148#ifndef ITK_MANUAL_INSTANTIATION
149# include "itkPolylineMaskImageFilter.hxx"
150#endif
151
152#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....