Newer
Older
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>PanoWindow1</class>
<widget class="QWidget" name="PanoWindow1">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>650</width>
<height>500</height>
</rect>
</property>
<property name="windowTitle">
<string>PanoWindow1</string>
</property>
<layout class="QGridLayout" name="gridLayout">
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<item row="6" column="2">
<widget class="QDoubleSpinBox" name="doubleSpinBox_4">
<property name="maximumSize">
<size>
<width>61</width>
<height>25</height>
</size>
</property>
<property name="minimum">
<double>-1.570000000000000</double>
</property>
<property name="maximum">
<double>1.570000000000000</double>
</property>
<property name="singleStep">
<double>0.010000000000000</double>
</property>
</widget>
</item>
<item row="7" column="1" colspan="2">
<widget class="QPushButton" name="chooseFile">
<property name="text">
<string>Input Image</string>
</property>
</widget>
</item>
<item row="8" column="2" alignment="Qt::AlignHCenter">
<widget class="QSlider" name="changefov">
<property name="minimum">
<number>1</number>
</property>
<property name="maximum">
<number>359</number>
</property>
<property name="value">
<number>60</number>
</property>
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
</widget>
</item>
<item row="2" column="1" colspan="2">
<widget class="QLabel" name="label_3">
<property name="text">
<string>Visualization</string>
</property>
</widget>
</item>
<item row="3" column="1" colspan="2">
<widget class="QComboBox" name="comboBox_2">
<item>
<property name="text">
<string>Perspective</string>
</property>
</item>
<item>
<property name="text">
<string>3D Sphere</string>
</property>
</item>
<item>
<property name="text">
<string>Equi-Rectangular</string>
</property>
</item>
</widget>
</item>
<item row="8" column="1" alignment="Qt::AlignHCenter">
<widget class="QSlider" name="changefovmax">
<property name="minimum">
<number>10</number>
</property>
<property name="maximum">
<number>180</number>
</property>
<property name="sliderPosition">
<number>60</number>
</property>
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="tickPosition">
<enum>QSlider::NoTicks</enum>
</property>
<property name="tickInterval">
<number>10</number>
</property>
</widget>
</item>
<item row="0" column="1" colspan="2">
<widget class="QLabel" name="label">
<property name="text">
<string>FOV-Scale Relation</string>
</property>
</widget>
</item>
<item row="10" column="1" colspan="2">
<widget class="QPushButton" name="pushButton">
<property name="text">
<string>Close</string>
</property>
</widget>
</item>
<item row="9" column="1" alignment="Qt::AlignHCenter">
<widget class="QLabel" name="label_5">
<property name="text">
<string>FOV max</string>
</property>
</widget>
</item>
<item row="9" column="2" alignment="Qt::AlignHCenter">
<widget class="QLabel" name="label_6">
<property name="text">
<string>FOV</string>
</property>
</widget>
</item>
<item row="0" column="0" rowspan="11">
<widget class="OpenGLCanvas" name="GLCanvas" native="true"/>
</item>
<item row="1" column="1" colspan="2">
<widget class="QComboBox" name="comboBox">
<property name="editable">
<bool>false</bool>
</property>
<property name="modelColumn">
<number>0</number>
</property>
<item>
<property name="text">
<string>Square Root</string>
</property>
</item>
<item>
<property name="text">
<string>Naive</string>
</property>
</item>
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<item>
<property name="text">
<string>Linear</string>
</property>
</item>
<item>
<property name="text">
<string>Square Power</string>
</property>
</item>
<item>
<property name="text">
<string>Cubic Power</string>
</property>
</item>
<item>
<property name="text">
<string>Logarithm</string>
</property>
</item>
</widget>
</item>
<item row="4" column="1" colspan="2">
<widget class="QLabel" name="label_4">
<property name="text">
<string>Center Point</string>
</property>
</widget>
</item>
<widget class="QDoubleSpinBox" name="doubleSpinBox_3">
<property name="maximumSize">
<size>
<width>61</width>
<height>25</height>
</size>
</property>
<property name="minimum">
<double>-3.140000000000000</double>
</property>
<property name="maximum">
<double>3.140000000000000</double>
</property>
<property name="singleStep">
<double>0.010000000000000</double>
</property>
</widget>
</item>
</layout>
</widget>
<layoutdefault spacing="6" margin="11"/>
<customwidgets>
<customwidget>
<class>OpenGLCanvas</class>
<extends>QWidget</extends>
<header location="global">openglcanvas.h</header>
<signal>fov_changed(int)</signal>
<slot>change_fov(double)</slot>
<slot>change_scale(double)</slot>
<slot>change_center_lambda(double)</slot>
<slot>change_center_phi(double)</slot>
<slot>change_fov_scale_relation(QString)</slot>
<slot>change_visualization(QString)</slot>
<slot>change_fov_max(int)</slot>
<slot>change_fov(int)</slot>
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
</slots>
</customwidget>
</customwidgets>
<resources/>
<connections>
<connection>
<sender>pushButton</sender>
<signal>clicked()</signal>
<receiver>PanoWindow1</receiver>
<slot>close()</slot>
<hints>
<hint type="sourcelabel">
<x>596</x>
<y>409</y>
</hint>
<hint type="destinationlabel">
<x>629</x>
<y>364</y>
</hint>
</hints>
</connection>
<connection>
<sender>doubleSpinBox_3</sender>
<signal>valueChanged(double)</signal>
<receiver>GLCanvas</receiver>
<slot>change_center_lambda(double)</slot>
<hints>
<hint type="sourcelabel">
<x>536</x>
<y>230</y>
</hint>
<hint type="destinationlabel">
<x>506</x>
<y>297</y>
</hint>
</hints>
</connection>
<connection>
<sender>doubleSpinBox_4</sender>
<signal>valueChanged(double)</signal>
<receiver>GLCanvas</receiver>
<slot>change_center_phi(double)</slot>
<hints>
<hint type="sourcelabel">
<x>605</x>
<y>227</y>
</hint>
<hint type="destinationlabel">
<x>506</x>
<y>320</y>
</hint>
</hints>
</connection>
<connection>
<sender>comboBox</sender>
<signal>activated(QString)</signal>
<receiver>GLCanvas</receiver>
<slot>change_fov_scale_relation(QString)</slot>
<hints>
<hint type="sourcelabel">
<x>603</x>
<y>50</y>
</hint>
<hint type="destinationlabel">
<x>492</x>
<y>77</y>
</hint>
</hints>
</connection>
<connection>
<sender>comboBox_2</sender>
<signal>activated(QString)</signal>
<receiver>GLCanvas</receiver>
<slot>change_visualization(QString)</slot>
<hints>
<hint type="sourcelabel">
<x>554</x>
<y>106</y>
</hint>
<hint type="destinationlabel">
<x>496</x>
<y>123</y>
</hint>
</hints>
</connection>
<connection>
<sender>chooseFile</sender>
<signal>clicked()</signal>
<receiver>GLCanvas</receiver>
<slot>change_input_image()</slot>
<hints>
<hint type="sourcelabel">
<x>566</x>
<y>258</y>
</hint>
<hint type="destinationlabel">
<x>247</x>
<y>249</y>
</hint>
</hints>
</connection>
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
<connection>
<sender>changefovmax</sender>
<signal>sliderMoved(int)</signal>
<receiver>GLCanvas</receiver>
<slot>change_fov_max(int)</slot>
<hints>
<hint type="sourcelabel">
<x>512</x>
<y>363</y>
</hint>
<hint type="destinationlabel">
<x>250</x>
<y>249</y>
</hint>
</hints>
</connection>
<connection>
<sender>changefov</sender>
<signal>sliderMoved(int)</signal>
<receiver>GLCanvas</receiver>
<slot>change_fov(int)</slot>
<hints>
<hint type="sourcelabel">
<x>607</x>
<y>352</y>
</hint>
<hint type="destinationlabel">
<x>250</x>
<y>249</y>
</hint>
</hints>
</connection>
<connection>
<sender>GLCanvas</sender>
<signal>fov_changed(int)</signal>
<receiver>changefov</receiver>
<slot>setValue(int)</slot>
<hints>
<hint type="sourcelabel">
<x>250</x>
<y>249</y>
</hint>
<hint type="destinationlabel">
<x>607</x>
<y>324</y>
</hint>
</hints>
</connection>