MITK-IGT
IGT Extension of MITK
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
OpenIGTLinkExample.cpp
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// Blueberry
14#include <berryISelectionService.h>
15#include <berryIWorkbenchWindow.h>
16
17// Qmitk
18#include "QmitkRenderWindow.h"
19
20// Qt
21#include <QMessageBox>
22
23// mitk
24#include <mitkImage.h>
25#include <mitkSurface.h>
27#include <mitkNodePredicateNot.h>
28#include <mitkNodePredicateProperty.h>
29
30// vtk
31#include <vtkSphereSource.h>
32
33//
34#include "OpenIGTLinkExample.h"
35
36//igtl
37#include "igtlStringMessage.h"
38#include "igtlTrackingDataMessage.h"
39
40const std::string OpenIGTLinkExample::VIEW_ID = "org.mitk.views.OpenIGTLinkExample";
41
45
47{
48 this->DestroyPipeline();
49
50 if (m_IGTLDeviceSource.IsNotNull())
51 {
52 m_IGTLDeviceSource->UnRegisterMicroservice();
53 }
54}
55
57{
58
59 // create GUI widgets from the Qt Designer's .ui file
60 m_Controls.setupUi( parent );
61
62 // connect the widget items with the methods
63 connect( m_Controls.butStart, SIGNAL(clicked()),
64 this, SLOT(Start()) );
65 connect( &m_Timer, SIGNAL(timeout()), this, SLOT(UpdatePipeline()));
66
67 //create a new OpenIGTLinkExample Client
68 m_IGTLClient = mitk::IGTLClient::New(false);
69 m_IGTLClient->SetName("OIGTL Example Client Device");
70
71 //create a new OpenIGTLinkExample Device source
72 m_IGTLDeviceSource = mitk::IGTLDeviceSource::New();
73
74 //set the client as the source for the device source
75 m_IGTLDeviceSource->SetIGTLDevice(m_IGTLClient);
76
77 m_IGTLDeviceSource->RegisterAsMicroservice();
78}
79
81{
82 //create a filter that converts OpenIGTLinkExample messages into navigation data
83 m_IGTLMsgToNavDataFilter = mitk::IGTLMessageToNavigationDataFilter::New();
84
85 //create a visualization filter
86 m_VisFilter = mitk::NavigationDataObjectVisualizationFilter::New();
87
88 //we expect a tracking data message with three tools. Since we cannot change
89 //the outputs at runtime we have to set it manually.
90 m_IGTLMsgToNavDataFilter->SetNumberOfExpectedOutputs(m_Controls.channelSpinBox->value());
91
92 //connect the filters with each other
93 //the OpenIGTLinkExample messages will be passed to the first filter that converts
94 //it to navigation data, then it is passed to the visualization filter that
95 //will visualize the transformation
98
99 //create an object that will be moved respectively to the navigation data
100 for (size_t i = 0; i < m_IGTLMsgToNavDataFilter->GetNumberOfIndexedOutputs(); i++)
101 {
102 mitk::DataNode::Pointer newNode = mitk::DataNode::New();
103 QString name("DemoNode IGTLProviderExmpl T");
104 name.append(QString::number(i));
105 newNode->SetName(name.toStdString());
106
107 //create small sphere and use it as surface
108 mitk::Surface::Pointer mySphere = mitk::Surface::New();
110 vtkSphere->SetRadius(2.0f);
111 vtkSphere->SetCenter(0.0, 0.0, 0.0);
112 vtkSphere->Update();
113 mySphere->SetVtkPolyData(vtkSphere->GetOutput());
114 newNode->SetData(mySphere);
115
116 m_VisFilter->SetRepresentationObject(i, mySphere.GetPointer());
117
118 m_DemoNodes.append(newNode);
119 }
120
121 this->ResizeBoundingBox();
122}
123
125{
126 m_VisFilter = nullptr;
127 foreach(mitk::DataNode::Pointer node, m_DemoNodes)
128 {
129 this->GetDataStorage()->Remove(node);
130 }
131 this->m_DemoNodes.clear();
132}
133
135{
136 if (this->m_Controls.butStart->text().contains("Start Pipeline"))
137 {
138 static bool isFirstTime = true;
139 if (isFirstTime)
140 {
141 //Setup the pipeline
142 this->CreatePipeline();
143 isFirstTime = false;
144 }
145
146 m_Timer.setInterval(this->m_Controls.visualizationUpdateRateSpinBox->value());
147 m_Timer.start();
148 //this->m_Controls.visualizationUpdateRateSpinBox->setEnabled(true);
149 this->m_Controls.butStart->setText("Stop Pipeline");
150 }
151 else
152 {
153 m_Timer.stop();
154 igtl::StopTrackingDataMessage::Pointer stopStreaming =
155 igtl::StopTrackingDataMessage::New();
156 this->m_IGTLClient->SendMessage(mitk::IGTLMessage::New((igtl::MessageBase::Pointer) stopStreaming));
157 this->m_Controls.butStart->setText("Start Pipeline");
158 //this->m_Controls.visualizationUpdateRateSpinBox->setEnabled(false);
159 }
160}
161
163{
164 if (this->m_Controls.visualizeCheckBox->isChecked())
165 {
166 //update the pipeline
167 m_VisFilter->Update();
168
170 //mitk::RenderingManager::GetInstance()->InitializeViewsByBoundingObjects(this->GetDataStorage());
171
172 //Update rendering
173 mitk::RenderingManager::GetInstance()->RequestUpdateAll();
174 }
175 else
176 {
177 //no visualization so we just update this filter
178 m_IGTLMsgToNavDataFilter->Update();
179 //record a timestamp if the output is new
180 //static double previousTimestamp;
181 //double curTimestamp = m_IGTLMsgToNavDataFilter->GetOutput()->GetIGTTimeStamp();
182 //if (previousTimestamp != curTimestamp)
183 static mitk::NavigationData::Pointer previousND = mitk::NavigationData::New();
185
186 //std::cout << "9: igt timestamp: " << curND->GetIGTTimeStamp() << std::endl;
187 //std::cout << "9: timestamp: " << curND->GetTimeStamp() << std::endl;
188
189 if ( !mitk::Equal( *(previousND.GetPointer()), *curND ) )
190 {
191 //previousTimestamp = curTimestamp;
192 previousND->Graft(curND);
193 }
194 }
195
196 //check if the timer interval changed
197 static int previousValue = 0;
198 int currentValue = this->m_Controls.visualizationUpdateRateSpinBox->value();
199 if (previousValue != currentValue)
200 {
201 m_Timer.setInterval(currentValue);
202 previousValue = currentValue;
203 }
204}
205
210{
211 // get all nodes
212 mitk::DataStorage::SetOfObjects::ConstPointer rs = this->GetDataStorage()->GetAll();
213 auto bounds = this->GetDataStorage()->ComputeBoundingGeometry3D(rs);
214
215 if (bounds.IsNull())
216 {
217 return;
218 }
219
220 //expand the bounding box in case the instruments are all at one position
221 mitk::Point3D center = bounds->GetCenterInWorld();
222 mitk::Geometry3D::BoundsArrayType extended_bounds = bounds->GetGeometryForTimeStep(0)->GetBounds();
223 for (unsigned int i = 0; i < 3; ++i)
224 {
225 if (bounds->GetExtentInWorld(i) < 500)
226 {
227 // extend the bounding box
228 extended_bounds[i * 2] = center[i] - 500 / 2.0;
229 extended_bounds[i * 2 + 1] = center[i] + 500 / 2.0;
230 }
231 }
232 //set the extended bounds
233 bounds->GetGeometryForTimeStep(0)->SetBounds(extended_bounds);
234
235 // initialize the views to the bounding geometry
236 mitk::RenderingManager::GetInstance()->InitializeViews(bounds);
237}
QList< mitk::DataNode::Pointer > m_DemoNodes
mitk::IGTLMessageToNavigationDataFilter::Pointer m_IGTLMsgToNavDataFilter
mitk::IGTLDeviceSource::Pointer m_IGTLDeviceSource
mitk::IGTLClient::Pointer m_IGTLClient
void CreateQtPartControl(QWidget *parent) override
static const std::string VIEW_ID
void ResizeBoundingBox()
To initialize the scene to the bounding box of all visible objects.
mitk::NavigationDataObjectVisualizationFilter::Pointer m_VisFilter
Ui::OpenIGTLinkExampleControls m_Controls
MITKIGTBASE_EXPORT bool Equal(const mitk::NavigationData &leftHandSide, const mitk::NavigationData &rightHandSide, ScalarType eps=mitk::eps, bool verbose=false)
Equal A function comparing two navigation data objects for beeing equal in meta- and imagedata.