Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
QmitkMeanReciprocalSquareDifferenceMetricView.cpp
Go to the documentation of this file.
1 /*===================================================================
2 
3 The Medical Imaging Interaction Toolkit (MITK)
4 
5 Copyright (c) German Cancer Research Center,
6 Division of Medical and Biological Informatics.
7 All rights reserved.
8 
9 This software is distributed WITHOUT ANY WARRANTY; without
10 even the implied warranty of MERCHANTABILITY or FITNESS FOR
11 A PARTICULAR PURPOSE.
12 
13 See LICENSE.txt or http://www.mitk.org for details.
14 
15 ===================================================================*/
16 
18 #include "mitkImageAccessByItk.h"
19 #include <itkMeanReciprocalSquareDifferenceImageToImageMetric.h>
20 
21 #include "QValidator"
22 
24  Qt::WindowFlags f)
26 {
27 }
28 
30 {
31 }
32 
34 {
36 }
37 
39 {
40  if (m_MovingImage.IsNotNull())
41  {
42  AccessByItk(m_MovingImage, GetMetric2);
43  return m_MetricObject;
44  }
45  return nullptr;
46 }
47 
48 template <class TPixelType, unsigned int VImageDimension>
49 itk::Object::Pointer QmitkMeanReciprocalSquareDifferenceMetricView::GetMetric2(
50  itk::Image<TPixelType, VImageDimension> * /*itkImage1*/)
51 {
52  typedef typename itk::Image<TPixelType, VImageDimension> FixedImageType;
53  typedef typename itk::Image<TPixelType, VImageDimension> MovingImageType;
56  //------------------------------------------------------------
57  // The lambda value is the intensity difference that should
58  // make the metric drop by 50%
59  //------------------------------------------------------------
60  MetricPointer->SetLambda(m_Controls.m_LambdaMeanReciprocalSquareDifference->text().toInt());
61  MetricPointer->SetComputeGradient(m_Controls.m_ComputeGradient->isChecked());
62  m_MetricObject = MetricPointer.GetPointer();
63  return MetricPointer.GetPointer();
64 }
65 
67 {
68  itk::Array<double> metricValues;
69  metricValues.SetSize(2);
70  metricValues.fill(0);
71  metricValues[0] = m_Controls.m_ComputeGradient->isChecked();
72  metricValues[1] = m_Controls.m_LambdaMeanReciprocalSquareDifference->text().toInt();
73  return metricValues;
74 }
75 
77 {
78  m_Controls.m_ComputeGradient->setChecked(metricValues[0]);
79  m_Controls.m_LambdaMeanReciprocalSquareDifference->setText(QString::number(metricValues[1]));
80 }
81 
83 {
84  return "MeanReciprocalSquareDifference";
85 }
86 
88 {
89  m_Controls.setupUi(parent);
90  QValidator *validatorLineEditInput = new QIntValidator(0, 20000000, this);
91  m_Controls.m_LambdaMeanReciprocalSquareDifference->setValidator(validatorLineEditInput);
92 }
93 
95 {
96  return false;
97 }
itk::SmartPointer< Self > Pointer
virtual void SetMetricParameters(itk::Array< double > metricValues) override
virtual mitk::MetricParameters::MetricType GetMetricType() override
Ui::QmitkMeanReciprocalSquareDifferenceMetricControls m_Controls
#define AccessByItk(mitkImage, itkImageTypeFunction)
Access a MITK image by an ITK image.
MetricType
Unique integer value for every metric.
QmitkMeanReciprocalSquareDifferenceMetricView(QWidget *parent=nullptr, Qt::WindowFlags f=nullptr)
static itkEventMacro(BoundingShapeInteractionEvent, itk::AnyEvent) class MITKBOUNDINGSHAPE_EXPORT BoundingShapeInteractor Pointer New()
Basic interaction methods for mitk::GeometryData.