ITK  5.0.0
Insight Segmentation and Registration Toolkit
itkParametricSpaceToImageSpaceMeshFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software 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  * http://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 itkParametricSpaceToImageSpaceMeshFilter_h
19 #define itkParametricSpaceToImageSpaceMeshFilter_h
20 
21 #include "itkMeshToMeshFilter.h"
22 
23 namespace itk
24 {
46 template< typename TInputMesh, typename TOutputMesh >
47 class ITK_TEMPLATE_EXPORT ParametricSpaceToImageSpaceMeshFilter:
48  public MeshToMeshFilter< TInputMesh, TOutputMesh >
49 {
50 public:
51  ITK_DISALLOW_COPY_AND_ASSIGN(ParametricSpaceToImageSpaceMeshFilter);
52 
58 
60  using CoordRepType = typename TInputMesh::CoordRepType;
61 
62  using InputMeshType = TInputMesh;
63  using OutputMeshType = TOutputMesh;
64  using InputMeshPointer = typename InputMeshType::Pointer;
65  using OutputMeshPointer = typename OutputMeshType::Pointer;
66 
68  itkNewMacro(Self);
69 
72 
73 protected:
75  ~ParametricSpaceToImageSpaceMeshFilter() override = default;
76  void PrintSelf(std::ostream & os, Indent indent) const override;
77 
79  void GenerateData() override;
80 
82  void GenerateOutputInformation() override;
83 };
84 } // end namespace itk
85 
86 #ifndef ITK_MANUAL_INSTANTIATION
87 #include "itkParametricSpaceToImageSpaceMeshFilter.hxx"
88 #endif
89 
90 #endif
Light weight base class for most itk classes.
TOutputMesh OutputMeshType
Definition: itkMeshSource.h:68
MeshToMeshFilter is the base class for all process objects that output mesh data, and require mesh da...
ParametricSpaceToImageSpaceMeshFilter takes an itk::Mesh on which the point Data is expected to conta...
typename InputMeshType::Pointer InputMeshPointer
typename OutputMeshType::Pointer OutputMeshPointer
Definition: itkMeshSource.h:69
Control indentation during Print() invocation.
Definition: itkIndent.h:49