]> Creatis software - clitk.git/blob - vv/qt_ui/vvToolImageArithm.ui
Into ImageArithm GUI in vv, add other operations
[clitk.git] / vv / qt_ui / vvToolImageArithm.ui
1 <?xml version="1.0" encoding="UTF-8"?>
2 <ui version="4.0">
3  <class>vvToolImageArithm</class>
4  <widget class="QWidget" name="vvToolImageArithm">
5   <property name="geometry">
6    <rect>
7     <x>0</x>
8     <y>0</y>
9     <width>424</width>
10     <height>345</height>
11    </rect>
12   </property>
13   <property name="windowTitle">
14    <string>Form</string>
15   </property>
16   <layout class="QVBoxLayout" name="verticalLayout_3">
17    <item>
18     <layout class="QHBoxLayout" name="horizontalLayout_2">
19      <item>
20       <spacer name="horizontalSpacer">
21        <property name="orientation">
22         <enum>Qt::Horizontal</enum>
23        </property>
24        <property name="sizeHint" stdset="0">
25         <size>
26          <width>40</width>
27          <height>20</height>
28         </size>
29        </property>
30       </spacer>
31      </item>
32      <item>
33       <widget class="QCheckBox" name="mCheckBoxUseFloatOutputType">
34        <property name="text">
35         <string>Set output pixel type to float</string>
36        </property>
37        <property name="checked">
38         <bool>false</bool>
39        </property>
40       </widget>
41      </item>
42      <item>
43       <spacer name="horizontalSpacer_2">
44        <property name="orientation">
45         <enum>Qt::Horizontal</enum>
46        </property>
47        <property name="sizeHint" stdset="0">
48         <size>
49          <width>40</width>
50          <height>20</height>
51         </size>
52        </property>
53       </spacer>
54      </item>
55     </layout>
56    </item>
57    <item>
58     <layout class="QHBoxLayout" name="horizontalLayout_3">
59      <item>
60       <widget class="QGroupBox" name="mGroupBoxTwoInputs">
61        <property name="title">
62         <string>Operation with two images</string>
63        </property>
64        <layout class="QVBoxLayout" name="verticalLayout">
65         <item>
66          <widget class="QRadioButton" name="radioButtonSum">
67           <property name="text">
68            <string>Sum A+B</string>
69           </property>
70           <property name="checked">
71            <bool>true</bool>
72           </property>
73          </widget>
74         </item>
75         <item>
76          <widget class="QRadioButton" name="radioButtonMultiply">
77           <property name="text">
78            <string>Multiply A*B</string>
79           </property>
80          </widget>
81         </item>
82         <item>
83          <widget class="QRadioButton" name="radioButtonDivide">
84           <property name="text">
85            <string>Divide A/B</string>
86           </property>
87          </widget>
88         </item>
89         <item>
90          <widget class="QRadioButton" name="radioButtonMin">
91           <property name="text">
92            <string>Min [A,B]</string>
93           </property>
94          </widget>
95         </item>
96         <item>
97          <widget class="QRadioButton" name="radioButtonMax">
98           <property name="text">
99            <string>Max [A,B]</string>
100           </property>
101          </widget>
102         </item>
103         <item>
104          <widget class="QRadioButton" name="radioButtonAbsDiff">
105           <property name="text">
106            <string>Absolute difference |A-B|</string>
107           </property>
108          </widget>
109         </item>
110         <item>
111          <widget class="QRadioButton" name="radioButtonSquaredDiff">
112           <property name="text">
113            <string>Squared difference (A-B)²</string>
114           </property>
115          </widget>
116         </item>
117         <item>
118          <widget class="QRadioButton" name="radioButtonDifference">
119           <property name="text">
120            <string>Difference A-B</string>
121           </property>
122          </widget>
123         </item>
124         <item>
125          <widget class="QRadioButton" name="radioButtonRelativeDiff">
126           <property name="text">
127            <string>Relative difference (A-B)/A</string>
128           </property>
129          </widget>
130         </item>
131        </layout>
132       </widget>
133      </item>
134      <item>
135       <widget class="QGroupBox" name="mGroupBoxOneInput">
136        <property name="title">
137         <string>Operation on a single image</string>
138        </property>
139        <layout class="QVBoxLayout" name="verticalLayout_2">
140         <item>
141          <layout class="QHBoxLayout" name="horizontalLayout">
142           <item>
143            <widget class="QLabel" name="mLabelInputInfo">
144             <property name="font">
145              <font>
146               <pointsize>11</pointsize>
147               <weight>50</weight>
148               <bold>false</bold>
149              </font>
150             </property>
151             <property name="frameShape">
152              <enum>QFrame::NoFrame</enum>
153             </property>
154             <property name="text">
155              <string>Value (v)</string>
156             </property>
157            </widget>
158           </item>
159           <item>
160            <widget class="QDoubleSpinBox" name="mValueSpinBox">
161             <property name="minimum">
162              <double>-999999999.000000000000000</double>
163             </property>
164             <property name="maximum">
165              <double>999999999.000000000000000</double>
166             </property>
167            </widget>
168           </item>
169          </layout>
170         </item>
171         <item>
172          <widget class="QRadioButton" name="radioButtonSumV">
173           <property name="text">
174            <string>Sum A(x)+v</string>
175           </property>
176           <property name="checked">
177            <bool>true</bool>
178           </property>
179          </widget>
180         </item>
181         <item>
182          <widget class="QRadioButton" name="radioButtonMultiplyV">
183           <property name="text">
184            <string>Multiply A(x)*v</string>
185           </property>
186          </widget>
187         </item>
188         <item>
189          <widget class="QRadioButton" name="radioButtonInverseV">
190           <property name="text">
191            <string>Inverse v/A(x)</string>
192           </property>
193          </widget>
194         </item>
195         <item>
196          <widget class="QRadioButton" name="radioButtonMaxV">
197           <property name="text">
198            <string>Max [ A(x), v ]</string>
199           </property>
200          </widget>
201         </item>
202         <item>
203          <widget class="QRadioButton" name="radioButtonMinV">
204           <property name="text">
205            <string>Min [ A(x),v ]</string>
206           </property>
207          </widget>
208         </item>
209         <item>
210          <widget class="QRadioButton" name="radioButtonAbsDiffV">
211           <property name="text">
212            <string>Absolute difference |A(x)-v|</string>
213           </property>
214          </widget>
215         </item>
216         <item>
217          <widget class="QRadioButton" name="radioButtonSquaredDiffV">
218           <property name="text">
219            <string>Squared difference (A(x)-v)²</string>
220           </property>
221          </widget>
222         </item>
223         <item>
224          <widget class="QRadioButton" name="radioButtonLogAlone">
225           <property name="text">
226            <string>Log A(x)    (don't use v)</string>
227           </property>
228          </widget>
229         </item>
230         <item>
231          <widget class="QRadioButton" name="radioButtonExpAlone">
232           <property name="text">
233            <string>Exp A(x)    (don't use v)</string>
234           </property>
235          </widget>
236         </item>
237         <item>
238          <widget class="QRadioButton" name="radioButtonSqrtV">
239           <property name="text">
240            <string>Sqrt A(x)    (don't use v)</string>
241           </property>
242          </widget>
243         </item>
244         <item>
245          <widget class="QRadioButton" name="radioButtonDivideV">
246           <property name="text">
247            <string>Division A(x)/v</string>
248           </property>
249          </widget>
250         </item>
251         <item>
252          <widget class="QRadioButton" name="radioButtonNormalize">
253           <property name="text">
254            <string>A(x)/max(A(x))    (don't use v)</string>
255           </property>
256          </widget>
257         </item>
258         <item>
259          <widget class="QRadioButton" name="radioButtonLogV">
260           <property name="text">
261            <string>-Log (A(x)/v)</string>
262           </property>
263          </widget>
264         </item>
265        </layout>
266       </widget>
267      </item>
268     </layout>
269    </item>
270   </layout>
271  </widget>
272  <resources>
273   <include location="../vvIcons.qrc"/>
274  </resources>
275  <connections/>
276 </ui>