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">
<item row="0" column="0" rowspan="12">
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
106
107
108
109
110
111
112
113
114
115
116
117
<widget class="OpenGLCanvas" name="GLCanvas" native="true"/>
</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="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>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="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="4" column="1" colspan="2">
<widget class="QLabel" name="label_2">
<property name="text">
<string>Field of View</string>
</property>
</widget>
</item>
<item row="5" column="1" colspan="2">
<widget class="QDoubleSpinBox" name="doubleSpinBox">
<property name="minimum">
<double>1.000000000000000</double>
</property>
<property name="maximum">
<double>360.000000000000000</double>
</property>
<property name="singleStep">
<double>2.000000000000000</double>
</property>
<property name="value">
<double>60.000000000000000</double>
</property>
</widget>
</item>
<item row="6" 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>
<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="9" column="1" colspan="2">
<widget class="QPushButton" name="chooseFile">
<property name="text">
<string>Input Image</string>
</property>
</widget>
</item>
<item row="10" column="2">
<spacer name="verticalSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>145</height>
</size>
</property>
</spacer>
</item>
<item row="11" column="1" colspan="2">
<widget class="QPushButton" name="pushButton">
<property name="text">
<string>Close</string>
</property>
</widget>
</item>
</layout>
</widget>
<layoutdefault spacing="6" margin="11"/>
<customwidgets>
<customwidget>
<class>OpenGLCanvas</class>
<extends>QWidget</extends>
<header location="global">openglcanvas.h</header>
<container>1</container>
<slots>
<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>
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
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
</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</sender>
<signal>valueChanged(double)</signal>
<receiver>GLCanvas</receiver>
<slot>change_fov(double)</slot>
<hints>
<hint type="sourcelabel">
<x>592</x>
<y>174</y>
</hint>
<hint type="destinationlabel">
<x>507</x>
<y>252</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>