Medical Imaging Interaction Toolkit  2025.12.02
Medical Imaging Interaction Toolkit
mitkPlanarFourPointAngle.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 mitkPlanarFourPointAngle_h
14 #define mitkPlanarFourPointAngle_h
15 
16 #include "mitkPlanarFigure.h"
18 
19 namespace mitk
20 {
21  class PlaneGeometry;
22 
29  {
30  public:
32 
33  itkFactorylessNewMacro(Self);
34 
35  itkCloneMacro(Self) public :
36  // Feature identifiers
37  const unsigned int FEATURE_ID_ANGLE;
38 
44  // virtual void Initialize();
45 
47  unsigned int GetMinimumNumberOfControlPoints() const override { return 4; }
49  unsigned int GetMaximumNumberOfControlPoints() const override { return 4; }
50  bool Equals(const mitk::PlanarFigure &other) const override;
51 
52  protected:
54 
56 
58  void GeneratePolyLine() override;
59 
61  void GenerateHelperPolyLine(double mmPerDisplayUnit, unsigned int displayHeight) override;
62 
64  void EvaluateFeaturesInternal() override;
65 
66  void PrintSelf(std::ostream &os, itk::Indent indent) const override;
67 
68  private:
69  };
70 
71 } // namespace mitk
72 
73 #endif
#define MITKPLANARFIGURE_EXPORT
Base-class for geometric planar (2D) figures, such as lines, circles, rectangles, polygons,...
Implementation of PlanarFigure representing a four point angle, which is defined by two non-intersect...
mitkClassMacro(PlanarFourPointAngle, PlanarFigure)
bool Equals(const mitk::PlanarFigure &other) const override
Compare two PlanarFigure objects Note: all subclasses have to implement the method on their own.
void GeneratePolyLine() override
Generates the poly-line representation of the planar figure.
unsigned int GetMaximumNumberOfControlPoints() const override
Four point angle has 4 control points per definition.
void GenerateHelperPolyLine(double mmPerDisplayUnit, unsigned int displayHeight) override
Generates the poly-lines that should be drawn the same size regardless of zoom.
unsigned int GetMinimumNumberOfControlPoints() const override
Place figure in its minimal configuration (a point at least) onto the given 2D geometry.
void PrintSelf(std::ostream &os, itk::Indent indent) const override
void EvaluateFeaturesInternal() override
Calculates feature quantities of the planar figure.
Find image slices visible on a given plane.