Medical Imaging Interaction Toolkit  2023.12.00
Medical Imaging Interaction Toolkit
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
mitkLassoTool.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 mitkLassoTool_h
14 #define mitkLassoTool_h
15 
17 #include "mitkContourTool.h"
19 
20 namespace mitk
21 {
41  {
42  public:
44  itkFactorylessNewMacro(Self);
45 
46  us::ModuleResource GetCursorIconResource() const override;
47  us::ModuleResource GetIconResource() const override;
48  const char *GetName() const override;
49  const char **GetXPM() const override;
50 
51  protected:
52  LassoTool();
53  ~LassoTool() override;
54 
55  void ConnectActionsAndFunctions() override;
56  void FinishTool() override;
57 
58  private:
59  mitk::ContourModelInteractor::Pointer m_ContourInteractor;
60  };
61 }
62 
63 #endif
mitk::DataInteractor::Pointer
itk::SmartPointer< Self > Pointer
Definition: mitkDataInteractor.h:56
mitkEditableContourTool.h
mitkContourTool.h
mitkContourModelInteractor.h
mitk::EditableContourTool
Definition: mitkEditableContourTool.h:27
mitk
Find image slices visible on a given plane.
Definition: RenderingTests.dox:1
mitk::EventStateMachine
‍**
Definition: mitkEventStateMachine.h:111
mitk::SegTool2D
Abstract base class for segmentation tools.
Definition: mitkSegTool2D.h:54
MITKSEGMENTATION_EXPORT
#define MITKSEGMENTATION_EXPORT
Definition: MitkSegmentationExports.h:15
us::ModuleResource
Definition: usModuleResource.h:55
mitkClassMacro
#define mitkClassMacro(className, SuperClassName)
Definition: mitkCommon.h:36
mitk::LassoTool
A 2D segmentation tool to draw polygon structures.
Definition: mitkLassoTool.h:40