Medical Imaging Interaction Toolkit  2025.12.02
Medical Imaging Interaction Toolkit
mitkPlaneLandmarkProjector.h
Go to the documentation of this file.
1 /*============================================================================
2 
3 The Medical Imaging Interaction Toolkit (MITK)
4 
5 Copyright (c) German Cancer Research Center (DKFZ)
6 All rights reserved.
7 
8 Use of this source code is governed by a 3-clause BSD license that can be
9 found in the LICENSE file.
10 
11 ============================================================================*/
12 
13 #ifndef mitkPlaneLandmarkProjector_h
14 #define mitkPlaneLandmarkProjector_h
15 
17 #include "mitkLandmarkProjector.h"
18 #include "mitkPointSet.h"
19 
20 namespace mitk
21 {
22  //##Documentation
23  //## @brief Thin-plate-spline-based landmark-based curved geometry
24  //##
25  //## @ingroup Geometry
27  {
28  public:
30 
31  itkFactorylessNewMacro(Self);
32 
33  itkCloneMacro(Self);
34 
35  //##Documentation
36  //## @brief Set the plane-geometry to project the target-landmarks on.
37  //##
38  itkSetConstObjectMacro(ProjectionPlane, mitk::PlaneGeometry);
39  //##Documentation
40  //## @brief Get the plane-geometry to project the target-landmarks on.
41  //##
42  itkGetConstObjectMacro(ProjectionPlane, mitk::PlaneGeometry);
43 
44  void ProjectLandmarks(const mitk::PointSet::DataType::PointsContainer *targetLandmarks) override;
45 
46  protected:
49 
51 
52  mitk::PlaneGeometry::ConstPointer m_ProjectionPlane;
53  };
54 
55 } // namespace mitk
56 
57 #endif
#define MITKALGORITHMSEXT_EXPORT
Base-class of landmark-projectors, which project the target landmarks to create source landmarks.
Describes a two-dimensional, rectangular plane.
Thin-plate-spline-based landmark-based curved geometry.
void ProjectLandmarks(const mitk::PointSet::DataType::PointsContainer *targetLandmarks) override
mitkClassMacro(PlaneLandmarkProjector, LandmarkProjector)
mitk::PlaneGeometry::ConstPointer m_ProjectionPlane
void ComputeCompleteAbstractTransform() override
Compute the transform from parameter space to world space incorporating the given interpolating trans...
Find image slices visible on a given plane.