MITK-IGT
IGT Extension of MITK
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
QmitkUSNavigationStepPunctuationIntervention.h
Go to the documentation of this file.
1/*============================================================================
2
3The Medical Imaging Interaction Toolkit (MITK)
4
5Copyright (c) German Cancer Research Center (DKFZ)
6All rights reserved.
7
8Use of this source code is governed by a 3-clause BSD license that can be
9found in the LICENSE file.
10
11============================================================================*/
12
13#ifndef QmitkUSNavigationStepPunctuationIntervention_h
14#define QmitkUSNavigationStepPunctuationIntervention_h
15
17#include <mitkPointSet.h>
18#include <mitkNavigationTool.h>
19#include <vtkSmartPointer.h>
20#include <vtkSphereSource.h>
21#include <vtkLine.h>
22#include <vtkOBBTree.h>
23
24namespace mitk {
25class DataNode;
26class NeedleProjectionFilter;
27class NodeDisplacementFilter;
28class USNavigationGrabCutSegmentationUpdateFilter;
29class USNavigationTargetUpdateFilter;
30class USNavigationTargetOcclusionFilter;
31class USPointMarkInteractor;
32class LookupTableProperty;
33class Surface;
34}
35
36namespace Ui {
38}
39
41
52{
53 Q_OBJECT
54
55public:
56
58 void SetNeedleMetaData(mitk::NavigationTool::Pointer needleNavigationTool);
59 explicit QmitkUSNavigationStepPunctuationIntervention(QWidget *parent = nullptr);
61
62 bool OnStartStep() override;
63 bool OnRestartStep() override;
64 bool OnFinishStep() override;
65
66 bool OnActivateStep() override;
67 void OnUpdate() override;
68
70
71 QString GetTitle() override;
72 bool GetIsRestartable() override;
73
74 FilterVector GetFilter() override;
75
76signals:
77
79
80 void AblationZoneChanged(int,int);
81
82protected slots:
83
87 void OnShowToolAxisEnabled(int enabled);
88
89protected:
90 void OnSetCombinedModality() override;
91
92 void ClearZones();
93 void UpdateBodyMarkerStatus(mitk::NavigationData::Pointer bodyMarker);
96 void UpdateCriticalStructures(mitk::NavigationData::Pointer needle, mitk::PointSet::Pointer path);
98 bool CheckSphereLineIntersection(mitk::Point3D& sphereOrigin, float& sphereRadius, mitk::Point3D& lineStart, mitk::Point3D& lineEnd);
99
100private:
101 Ui::QmitkUSNavigationStepPunctuationIntervention *m_Ui;
102
103 mitk::DataStorage::SetOfObjects::ConstPointer m_ZoneNodes;
104
107
109 mitk::NavigationTool::Pointer m_NeedleNavigationTool;
110
111 std::map<mitk::DataNode::Pointer,mitk::Color> m_OldColors; //stores the original color of the critical structure nodes
112
113 //some help variables for the CheckSphereLineIntersection()-Method
116 vtkSmartPointer<vtkPoints> m_IntersectPoints;
117};
118
119#endif
Abstract base class for navigation step widgets.
std::vector< itk::SmartPointer< mitk::NavigationDataToNavigationDataFilter > > FilterVector
Navigations step for the actual punctuation intervention. The needle path is projected onto the image...
bool CheckSphereLineIntersection(mitk::Point3D &sphereOrigin, float &sphereRadius, mitk::Point3D &lineStart, mitk::Point3D &lineEnd)
bool OnActivateStep() override
Called when the navigation step gets activated. This method has to be implemented by a concrete subcl...
bool GetIsRestartable() override
Indicates if it makes sense to be able to restart the step. This method must be implemented by concre...
void OnUpdate() override
Called periodically while a navigation step is active. This method has to be implemented by a concret...
void UpdateBodyMarkerStatus(mitk::NavigationData::Pointer bodyMarker)
bool OnRestartStep() override
Called when restarting a navigation step. This method may be implemented by a concrete subclass to ha...
QString GetTitle() override
Getter for the title of the navigation step. This title should be human readable and can be used to d...
bool OnStartStep() override
Called when the navigation step gets started. This method has to be implemented by a concrete subclas...
void UpdateCriticalStructures(mitk::NavigationData::Pointer needle, mitk::PointSet::Pointer path)
FilterVector GetFilter() override
Getter for navigation data filters of the navigation step. This method may be implemented by a concre...
bool OnFinishStep() override
Called when all necessary actions for the step where done. This method has to be implemented by a con...
void OnSettingsChanged(const itk::SmartPointer< mitk::DataNode >) override
Called every time the settings for the navigation process where changed. This method may be implement...
void OnSetCombinedModality() override
Called every time SetCombinedModality() was called. This method may be implemented by a concrete subc...
void SetNeedleMetaData(mitk::NavigationTool::Pointer needleNavigationTool)
QProgressBar for displaying distances to zones. Colors are changed according to the distance to the z...
IGT Exceptions.