1 /*=========================================================================
2 Program: vv http://www.creatis.insa-lyon.fr/rio/vv
5 - University of LYON http://www.universite-lyon.fr/
6 - Léon Bérard cancer center http://www.centreleonberard.fr
7 - CREATIS CNRS laboratory http://www.creatis.insa-lyon.fr
9 This software is distributed WITHOUT ANY WARRANTY; without even
10 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11 PURPOSE. See the copyright notices for more information.
13 It is distributed under dual licence
15 - BSD See included LICENSE.txt file
16 - CeCILL-B http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17 ===========================================================================**/
19 #include "vvToolImageArithm.h"
21 #include "clitkImageArithmGenericFilter.h"
22 #include <QMessageBox>
24 //------------------------------------------------------------------------------
25 // Create the tool and automagically (I like this word) insert it in
26 // the main window menu.
27 ADD_TOOL(vvToolImageArithm);
28 //------------------------------------------------------------------------------
30 //------------------------------------------------------------------------------
31 vvToolImageArithm::vvToolImageArithm(vvMainWindowBase * parent, Qt::WindowFlags f)
32 :vvToolWidgetBase(parent, f),
33 vvToolBase<vvToolImageArithm>(parent),
34 Ui::vvToolImageArithm()
37 Ui_vvToolImageArithm::setupUi(mToolWidget);
40 mFilter = new clitk::ImageArithmGenericFilter<args_info_clitkImageArithm>;
42 // Set how many inputs are needed for this tool
43 AddInputSelector("Select first image (A)", mFilter);
44 AddInputSelector("Select second image (B)", mFilter, true);
46 //------------------------------------------------------------------------------
49 //------------------------------------------------------------------------------
50 vvToolImageArithm::~vvToolImageArithm()
53 //------------------------------------------------------------------------------
56 //------------------------------------------------------------------------------
57 void vvToolImageArithm::Initialize()
59 SetToolName("ImageArithm");
60 SetToolMenuName("ImageArithm");
61 SetToolIconFilename(":/common/icons/arithm.png");
62 SetToolTip("Perform simple arithmetic operations on one or two images.");
63 SetToolExperimental(false);
65 //------------------------------------------------------------------------------
68 //------------------------------------------------------------------------------
69 void vvToolImageArithm::InputIsSelected(std::vector<vvSlicerManager *> & l)
74 mGroupBoxOneInput->setEnabled(false);
75 mGroupBoxTwoInputs->setEnabled(true);
77 //------------------------------------------------------------------------------
80 //------------------------------------------------------------------------------
81 void vvToolImageArithm::InputIsSelected(vvSlicerManager * l)
85 mGroupBoxTwoInputs->setEnabled(false);
86 mGroupBoxOneInput->setEnabled(true);
88 //------------------------------------------------------------------------------
91 //------------------------------------------------------------------------------
92 void vvToolImageArithm::GetArgsInfoFromGUI()
94 mArgsInfo.input1_given = false;
96 mArgsInfo.input2_given = true;
97 mArgsInfo.input2_arg = new char; // need to indicate that there are two inputs
98 mArgsInfo.scalar_given = false;
99 if (radioButtonSum->isChecked()) mArgsInfo.operation_arg = 0;
100 if (radioButtonMultiply->isChecked()) mArgsInfo.operation_arg = 1;
101 if (radioButtonDivide->isChecked()) mArgsInfo.operation_arg = 2;
102 if (radioButtonMax->isChecked()) mArgsInfo.operation_arg = 3;
103 if (radioButtonMin->isChecked()) mArgsInfo.operation_arg = 4;
104 if (radioButtonAbsDiff->isChecked()) mArgsInfo.operation_arg = 5;
105 if (radioButtonSquaredDiff->isChecked()) mArgsInfo.operation_arg = 6;
107 mArgsInfo.input2_given = false;
108 mArgsInfo.scalar_given = true;
109 if (radioButtonSumV->isChecked()) mArgsInfo.operation_arg = 0;
110 if (radioButtonMultiplyV->isChecked()) mArgsInfo.operation_arg = 1;
111 if (radioButtonInverseV->isChecked()) mArgsInfo.operation_arg = 2;
112 if (radioButtonMaxV->isChecked()) mArgsInfo.operation_arg = 3;
113 if (radioButtonMinV->isChecked()) mArgsInfo.operation_arg = 4;
114 if (radioButtonAbsDiffV->isChecked()) mArgsInfo.operation_arg = 5;
115 if (radioButtonSquaredDiffV->isChecked()) mArgsInfo.operation_arg = 6;
116 if (radioButtonLogV->isChecked()) mArgsInfo.operation_arg = 7;
117 if (radioButtonExpV->isChecked()) mArgsInfo.operation_arg = 8;
118 if (radioButtonSqrtV->isChecked()) mArgsInfo.operation_arg = 9;
119 mArgsInfo.scalar_given = true;
120 mArgsInfo.scalar_arg = mValueSpinBox->value();
122 mArgsInfo.output_given = false;
123 mArgsInfo.verbose_flag = false;
124 mArgsInfo.setFloatOutput_flag = mCheckBoxUseFloatOutputType->isChecked();
125 mArgsInfo.imagetypes_flag = false;
127 //------------------------------------------------------------------------------
130 //------------------------------------------------------------------------------
131 void vvToolImageArithm::apply()
133 if (!mCurrentSlicerManager) close();
134 QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
135 GetArgsInfoFromGUI();
137 std::vector<vvImage::Pointer> inputs;
140 inputs.push_back(mInput1->GetImage());
141 inputs.push_back(mInput2->GetImage());
144 if (inputs[0]->GetScalarTypeAsITKString() != inputs[1]->GetScalarTypeAsITKString()) {
145 std::cerr << "Sorry inputs should have the same pixeltype." << std::endl;
146 std::cerr << "Input1 = " << inputs[0]->GetScalarTypeAsITKString() << std::endl;
147 std::cerr << "Input2 = " << inputs[1]->GetScalarTypeAsITKString() << std::endl;
148 QApplication::restoreOverrideCursor();
149 QMessageBox::information(this, "Wrong image type","Sorry, could not perform operation. Please select inputs with same pixel type.");
155 if (!mInput1->GetImage()->HaveSameSizeAndSpacingThan(mInput2->GetImage())) {
156 std::cerr << "Sorry inputs should have the same size and spacing." << std::endl;
157 QApplication::restoreOverrideCursor();
158 QMessageBox::information(this, "Wrong images size","Sorry, could not perform operation. Please select inputs with same size and spacing.");
164 inputs.push_back(mInput1->GetImage());
168 clitk::ImageArithmGenericFilter<args_info_clitkImageArithm>::Pointer filter =
169 clitk::ImageArithmGenericFilter<args_info_clitkImageArithm>::New();
170 filter->SetInputVVImages(inputs);
171 filter->SetArgsInfo(mArgsInfo);
172 filter->EnableReadOnDisk(false);
173 filter->EnableOverwriteInputImage(false);
177 vvImage::Pointer output = filter->GetOutputVVImage();
178 std::ostringstream osstream;
179 osstream << "Arithm_" << mArgsInfo.operation_arg << "_ "
180 << mCurrentSlicerManager->GetSlicer(0)->GetFileName() << ".mhd";
181 AddImage(output,osstream.str());
182 QApplication::restoreOverrideCursor();
185 //------------------------------------------------------------------------------