PaIRS-UniNa 0.2.4__cp310-cp310-macosx_10_9_universal2.whl → 0.2.5__cp310-cp310-macosx_10_9_universal2.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. PaIRS_UniNa/Changes.txt +23 -0
  2. PaIRS_UniNa/Custom_Top.py +1 -1
  3. PaIRS_UniNa/Explorer.py +3059 -3049
  4. PaIRS_UniNa/FolderLoop.py +371 -371
  5. PaIRS_UniNa/Input_Tab.py +714 -709
  6. PaIRS_UniNa/Input_Tab_tools.py +3017 -3009
  7. PaIRS_UniNa/Output_Tab.py +2 -2
  8. PaIRS_UniNa/PaIRS.py +17 -17
  9. PaIRS_UniNa/PaIRS_PIV.py +56 -1
  10. PaIRS_UniNa/PaIRS_pypacks.py +143 -6
  11. PaIRS_UniNa/Process_Tab.py +6 -11
  12. PaIRS_UniNa/Process_Tab_Disp.py +8 -3
  13. PaIRS_UniNa/Saving_tools.py +277 -277
  14. PaIRS_UniNa/TabTools.py +56 -17
  15. PaIRS_UniNa/Vis_Tab.py +237 -78
  16. PaIRS_UniNa/Whatsnew.py +2 -0
  17. PaIRS_UniNa/_PaIRS_PIV.so +0 -0
  18. PaIRS_UniNa/__init__.py +2 -2
  19. PaIRS_UniNa/gPaIRS.py +3745 -3600
  20. PaIRS_UniNa/icons/pylog.png +0 -0
  21. PaIRS_UniNa/icons/python_warning.png +0 -0
  22. PaIRS_UniNa/icons/queue.png +0 -0
  23. PaIRS_UniNa/icons/uninitialized.png +0 -0
  24. PaIRS_UniNa/icons/window.png +0 -0
  25. PaIRS_UniNa/listLib.py +301 -301
  26. PaIRS_UniNa/parForMulti.py +433 -433
  27. PaIRS_UniNa/parForWorkers.py +46 -1
  28. PaIRS_UniNa/procTools.py +17 -7
  29. PaIRS_UniNa/rqrdpckgs.txt +8 -0
  30. PaIRS_UniNa/stereo.py +683 -683
  31. PaIRS_UniNa/tabSplitter.py +606 -606
  32. PaIRS_UniNa/ui_Calibration_Tab.py +542 -542
  33. PaIRS_UniNa/ui_Custom_Top.py +294 -294
  34. PaIRS_UniNa/ui_Input_Tab.py +1098 -1098
  35. PaIRS_UniNa/ui_Input_Tab_CalVi.py +1280 -1280
  36. PaIRS_UniNa/ui_Log_Tab.py +261 -261
  37. PaIRS_UniNa/ui_Output_Tab.py +2360 -2360
  38. PaIRS_UniNa/ui_Process_Tab.py +3808 -3808
  39. PaIRS_UniNa/ui_Process_Tab_CalVi.py +1547 -1547
  40. PaIRS_UniNa/ui_Process_Tab_Disp.py +1139 -968
  41. PaIRS_UniNa/ui_Process_Tab_Min.py +435 -435
  42. PaIRS_UniNa/ui_ResizePopup.py +203 -203
  43. PaIRS_UniNa/ui_Vis_Tab.py +1626 -1533
  44. PaIRS_UniNa/ui_Vis_Tab_CalVi.py +1249 -1249
  45. PaIRS_UniNa/ui_Whatsnew.py +131 -131
  46. PaIRS_UniNa/ui_gPairs.py +867 -849
  47. PaIRS_UniNa/ui_infoPaIRS.py +550 -428
  48. PaIRS_UniNa/whatsnew.txt +5 -4
  49. {PaIRS_UniNa-0.2.4.dist-info → pairs_unina-0.2.5.dist-info}/METADATA +38 -26
  50. {PaIRS_UniNa-0.2.4.dist-info → pairs_unina-0.2.5.dist-info}/RECORD +52 -52
  51. {PaIRS_UniNa-0.2.4.dist-info → pairs_unina-0.2.5.dist-info}/WHEEL +1 -1
  52. PaIRS_UniNa/icons/order.png +0 -0
  53. PaIRS_UniNa/icons/order_reverse.png +0 -0
  54. PaIRS_UniNa/icons/pencil_bw.png +0 -0
  55. PaIRS_UniNa/icons/run_piv.png +0 -0
  56. PaIRS_UniNa-0.2.4.dist-info/LICENSE +0 -19
  57. {PaIRS_UniNa-0.2.4.dist-info → pairs_unina-0.2.5.dist-info}/top_level.txt +0 -0
@@ -1,429 +1,551 @@
1
1
  from .addwidgets_ps import icons_path
2
- # -*- coding: utf-8 -*-
3
-
4
- ################################################################################
5
- ## Form generated from reading UI file 'infoPaIRSinWFRJ.ui'
6
- ##
7
- ## Created by: Qt User Interface Compiler version 6.7.2
8
- ##
9
- ## WARNING! All changes made in this file will be lost when recompiling UI file!
10
- ################################################################################
11
-
12
- from PySide6.QtCore import (QCoreApplication, QDate, QDateTime, QLocale,
13
- QMetaObject, QObject, QPoint, QRect,
14
- QSize, QTime, QUrl, Qt)
15
- from PySide6.QtGui import (QBrush, QColor, QConicalGradient, QCursor,
16
- QFont, QFontDatabase, QGradient, QIcon,
17
- QImage, QKeySequence, QLinearGradient, QPainter,
18
- QPalette, QPixmap, QRadialGradient, QTransform)
19
- from PySide6.QtWidgets import (QApplication, QGridLayout, QHBoxLayout, QLabel,
20
- QMainWindow, QMenuBar, QScrollArea, QSizePolicy,
21
- QTabWidget, QVBoxLayout, QWidget)
22
-
23
- class Ui_InfoPaiRS(object):
24
- def setupUi(self, InfoPaiRS):
25
- if not InfoPaiRS.objectName():
26
- InfoPaiRS.setObjectName(u"InfoPaiRS")
27
- InfoPaiRS.resize(700, 650)
28
- InfoPaiRS.setMinimumSize(QSize(550, 600))
29
- font = QFont()
30
- font.setFamilies([u"Arial"])
31
- InfoPaiRS.setFont(font)
32
- icon = QIcon()
33
- icon.addFile(u""+ icons_path +"icon_PaIRS.png", QSize(), QIcon.Mode.Normal, QIcon.State.Off)
34
- InfoPaiRS.setWindowIcon(icon)
35
- self.centralwidget = QWidget(InfoPaiRS)
36
- self.centralwidget.setObjectName(u"centralwidget")
37
- font1 = QFont()
38
- font1.setFamilies([u"Arial"])
39
- font1.setPointSize(10)
40
- self.centralwidget.setFont(font1)
41
- self.horizontalLayout = QHBoxLayout(self.centralwidget)
42
- self.horizontalLayout.setObjectName(u"horizontalLayout")
43
- self.tabWidget = QTabWidget(self.centralwidget)
44
- self.tabWidget.setObjectName(u"tabWidget")
45
- self.tabWidget.setAutoFillBackground(False)
46
- self.tabWidget.setTabPosition(QTabWidget.TabPosition.North)
47
- self.tabWidget.setTabShape(QTabWidget.TabShape.Rounded)
48
- self.tabWidget.setDocumentMode(True)
49
- self.tabWidget.setTabBarAutoHide(True)
50
- self.about = QWidget()
51
- self.about.setObjectName(u"about")
52
- self.about.setStyleSheet(u"background-color: rgba(255, 255, 255, 0);")
53
- self.gridLayout_2 = QGridLayout(self.about)
54
- self.gridLayout_2.setSpacing(10)
55
- self.gridLayout_2.setObjectName(u"gridLayout_2")
56
- self.gridLayout_2.setContentsMargins(-1, 15, -1, -1)
57
- self.logo = QLabel(self.about)
58
- self.logo.setObjectName(u"logo")
59
- self.logo.setMinimumSize(QSize(250, 250))
60
- self.logo.setMaximumSize(QSize(250, 250))
61
- #if QT_CONFIG(accessibility)
62
- self.logo.setAccessibleDescription(u"")
63
- #endif // QT_CONFIG(accessibility)
64
- self.logo.setPixmap(QPixmap(u""+ icons_path +"logo_PaIRS_completo.png"))
65
- self.logo.setScaledContents(True)
66
-
67
- self.gridLayout_2.addWidget(self.logo, 0, 0, 1, 1)
68
-
69
- self.info = QLabel(self.about)
70
- self.info.setObjectName(u"info")
71
- font2 = QFont()
72
- font2.setFamilies([u"Arial"])
73
- font2.setPointSize(14)
74
- self.info.setFont(font2)
75
- self.info.setTextFormat(Qt.TextFormat.RichText)
76
- self.info.setWordWrap(True)
77
- self.info.setOpenExternalLinks(True)
78
- self.info.setTextInteractionFlags(Qt.TextInteractionFlag.LinksAccessibleByKeyboard|Qt.TextInteractionFlag.LinksAccessibleByMouse|Qt.TextInteractionFlag.TextBrowserInteraction|Qt.TextInteractionFlag.TextSelectableByKeyboard|Qt.TextInteractionFlag.TextSelectableByMouse)
79
-
80
- self.gridLayout_2.addWidget(self.info, 0, 1, 1, 1)
81
-
82
- self.unina_dii = QLabel(self.about)
83
- self.unina_dii.setObjectName(u"unina_dii")
84
- self.unina_dii.setMaximumSize(QSize(16777215, 90))
85
- self.unina_dii.setPixmap(QPixmap(u""+ icons_path +"unina_dii.png"))
86
- self.unina_dii.setAlignment(Qt.AlignmentFlag.AlignCenter)
87
-
88
- self.gridLayout_2.addWidget(self.unina_dii, 1, 0, 1, 1)
89
-
90
- self.info_uni = QLabel(self.about)
91
- self.info_uni.setObjectName(u"info_uni")
92
- self.info_uni.setTextFormat(Qt.TextFormat.RichText)
93
- self.info_uni.setWordWrap(True)
94
-
95
- self.gridLayout_2.addWidget(self.info_uni, 1, 1, 1, 1)
96
-
97
- self.tabWidget.addTab(self.about, "")
98
- self.authors = QWidget()
99
- self.authors.setObjectName(u"authors")
100
- self.authors.setStyleSheet(u"background-color: rgba(255, 255, 255, 0);")
101
- self.gridLayout = QGridLayout(self.authors)
102
- self.gridLayout.setSpacing(20)
103
- self.gridLayout.setObjectName(u"gridLayout")
104
- self.gridLayout.setContentsMargins(-1, 15, -1, -1)
105
- self.tom = QLabel(self.authors)
106
- self.tom.setObjectName(u"tom")
107
- self.tom.setMinimumSize(QSize(150, 150))
108
- self.tom.setMaximumSize(QSize(150, 150))
109
- self.tom.setPixmap(QPixmap(u""+ icons_path +"tom.png"))
110
- self.tom.setScaledContents(True)
111
-
112
- self.gridLayout.addWidget(self.tom, 1, 0, 1, 1)
113
-
114
- self.ger = QLabel(self.authors)
115
- self.ger.setObjectName(u"ger")
116
- self.ger.setMinimumSize(QSize(150, 150))
117
- self.ger.setMaximumSize(QSize(150, 150))
118
- self.ger.setPixmap(QPixmap(u""+ icons_path +"ger.png"))
119
- self.ger.setScaledContents(True)
120
-
121
- self.gridLayout.addWidget(self.ger, 0, 0, 1, 1)
122
-
123
- self.scrollArea_ger_cv = QScrollArea(self.authors)
124
- self.scrollArea_ger_cv.setObjectName(u"scrollArea_ger_cv")
125
- self.scrollArea_ger_cv.setStyleSheet(u" QScrollArea {\n"
126
- " border: 1pix solid gray;\n"
127
- " }\n"
128
- "\n"
129
- "QScrollBar:horizontal\n"
130
- " {\n"
131
- " height: 15px;\n"
132
- " margin: 3px 0px 3px 0px;\n"
133
- " border: 1px transparent #2A2929;\n"
134
- " border-radius: 4px;\n"
135
- " background-color: rgba(200,200,200,50); /* #2A2929; */\n"
136
- " }\n"
137
- "\n"
138
- "QScrollBar::handle:horizontal\n"
139
- " {\n"
140
- " background-color: rgba(180,180,180,180); /* #605F5F; */\n"
141
- " min-width: 30px;\n"
142
- " border-radius: 4px;\n"
143
- " }\n"
144
- "\n"
145
- "QScrollBar:vertical\n"
146
- " {\n"
147
- " background-color: rgba(200,200,200,50); ;\n"
148
- " width: 15px;\n"
149
- " margin: 10px 3px 10px 3px;\n"
150
- " border: 1px transparent #2A2929;\n"
151
- " border-radius: 4px;\n"
152
- " }\n"
153
- "\n"
154
- "QScrollBar::handle:vertical\n"
155
- " {\n"
156
- " background-color: rgba(180,180,180,180); /* #605F5F; */\n"
157
- " min-height: 30px;\n"
158
- " border-radius: 4px;\n"
159
- " }\n"
160
- "\n"
161
- "QScrollBar::add-line {\n"
162
- " border: none;\n"
163
- " "
164
- " background: none;\n"
165
- " }\n"
166
- "\n"
167
- "QScrollBar::sub-line {\n"
168
- " border: none;\n"
169
- " background: none;\n"
170
- " }\n"
171
- "")
172
- self.scrollArea_ger_cv.setWidgetResizable(True)
173
- self.scrollAreaWidgetContents_ger_cv = QWidget()
174
- self.scrollAreaWidgetContents_ger_cv.setObjectName(u"scrollAreaWidgetContents_ger_cv")
175
- self.scrollAreaWidgetContents_ger_cv.setGeometry(QRect(0, 0, 466, 255))
176
- self.verticalLayout = QVBoxLayout(self.scrollAreaWidgetContents_ger_cv)
177
- self.verticalLayout.setSpacing(0)
178
- self.verticalLayout.setObjectName(u"verticalLayout")
179
- self.verticalLayout.setContentsMargins(0, 0, 0, 0)
180
- self.ger_cv = QLabel(self.scrollAreaWidgetContents_ger_cv)
181
- self.ger_cv.setObjectName(u"ger_cv")
182
- font3 = QFont()
183
- font3.setFamilies([u"Arial"])
184
- font3.setPointSize(11)
185
- self.ger_cv.setFont(font3)
186
- self.ger_cv.setTextFormat(Qt.TextFormat.RichText)
187
- self.ger_cv.setScaledContents(True)
188
- self.ger_cv.setWordWrap(True)
189
- self.ger_cv.setMargin(5)
190
- self.ger_cv.setIndent(-5)
191
-
192
- self.verticalLayout.addWidget(self.ger_cv)
193
-
194
- self.scrollArea_ger_cv.setWidget(self.scrollAreaWidgetContents_ger_cv)
195
-
196
- self.gridLayout.addWidget(self.scrollArea_ger_cv, 0, 1, 1, 1)
197
-
198
- self.scrollArea_tom_cv = QScrollArea(self.authors)
199
- self.scrollArea_tom_cv.setObjectName(u"scrollArea_tom_cv")
200
- self.scrollArea_tom_cv.setStyleSheet(u" QScrollArea {\n"
201
- " border: 1pix solid gray;\n"
202
- " }\n"
203
- "\n"
204
- "QScrollBar:horizontal\n"
205
- " {\n"
206
- " height: 15px;\n"
207
- " margin: 3px 0px 3px 0px;\n"
208
- " border: 1px transparent #2A2929;\n"
209
- " border-radius: 4px;\n"
210
- " background-color: rgba(200,200,200,50); /* #2A2929; */\n"
211
- " }\n"
212
- "\n"
213
- "QScrollBar::handle:horizontal\n"
214
- " {\n"
215
- " background-color: rgba(180,180,180,180); /* #605F5F; */\n"
216
- " min-width: 30px;\n"
217
- " border-radius: 4px;\n"
218
- " }\n"
219
- "\n"
220
- "QScrollBar:vertical\n"
221
- " {\n"
222
- " background-color: rgba(200,200,200,50); ;\n"
223
- " width: 15px;\n"
224
- " margin: 10px 3px 10px 3px;\n"
225
- " border: 1px transparent #2A2929;\n"
226
- " border-radius: 4px;\n"
227
- " }\n"
228
- "\n"
229
- "QScrollBar::handle:vertical\n"
230
- " {\n"
231
- " background-color: rgba(180,180,180,180); /* #605F5F; */\n"
232
- " min-height: 30px;\n"
233
- " border-radius: 4px;\n"
234
- " }\n"
235
- "\n"
236
- "QScrollBar::add-line {\n"
237
- " border: none;\n"
238
- " "
239
- " background: none;\n"
240
- " }\n"
241
- "\n"
242
- "QScrollBar::sub-line {\n"
243
- " border: none;\n"
244
- " background: none;\n"
245
- " }\n"
246
- "")
247
- self.scrollArea_tom_cv.setWidgetResizable(True)
248
- self.scrollAreaWidgetContents_tom_cv = QWidget()
249
- self.scrollAreaWidgetContents_tom_cv.setObjectName(u"scrollAreaWidgetContents_tom_cv")
250
- self.scrollAreaWidgetContents_tom_cv.setGeometry(QRect(0, 0, 466, 255))
251
- self.verticalLayout_2 = QVBoxLayout(self.scrollAreaWidgetContents_tom_cv)
252
- self.verticalLayout_2.setSpacing(0)
253
- self.verticalLayout_2.setObjectName(u"verticalLayout_2")
254
- self.verticalLayout_2.setContentsMargins(0, 0, 0, 0)
255
- self.tom_cv = QLabel(self.scrollAreaWidgetContents_tom_cv)
256
- self.tom_cv.setObjectName(u"tom_cv")
257
- self.tom_cv.setFont(font3)
258
- self.tom_cv.setTextFormat(Qt.TextFormat.RichText)
259
- self.tom_cv.setWordWrap(True)
260
- self.tom_cv.setMargin(5)
261
- self.tom_cv.setIndent(-5)
262
-
263
- self.verticalLayout_2.addWidget(self.tom_cv)
264
-
265
- self.scrollArea_tom_cv.setWidget(self.scrollAreaWidgetContents_tom_cv)
266
-
267
- self.gridLayout.addWidget(self.scrollArea_tom_cv, 1, 1, 1, 1)
268
-
269
- self.tabWidget.addTab(self.authors, "")
270
- self.references = QWidget()
271
- self.references.setObjectName(u"references")
272
- self.references.setStyleSheet(u"background-color: rgba(255, 255, 255, 0);")
273
- self.horizontalLayout_2 = QHBoxLayout(self.references)
274
- self.horizontalLayout_2.setObjectName(u"horizontalLayout_2")
275
- self.horizontalLayout_2.setContentsMargins(-1, 15, -1, -1)
276
- self.scrollArea_list_ref = QScrollArea(self.references)
277
- self.scrollArea_list_ref.setObjectName(u"scrollArea_list_ref")
278
- self.scrollArea_list_ref.setStyleSheet(u" QScrollArea {\n"
279
- " border: 1pix solid gray;\n"
280
- " }\n"
281
- "\n"
282
- "QScrollBar:horizontal\n"
283
- " {\n"
284
- " height: 15px;\n"
285
- " margin: 3px 0px 3px 0px;\n"
286
- " border: 1px transparent #2A2929;\n"
287
- " border-radius: 4px;\n"
288
- " background-color: rgba(200,200,200,50); /* #2A2929; */\n"
289
- " }\n"
290
- "\n"
291
- "QScrollBar::handle:horizontal\n"
292
- " {\n"
293
- " background-color: rgba(180,180,180,180); /* #605F5F; */\n"
294
- " min-width: 30px;\n"
295
- " border-radius: 4px;\n"
296
- " }\n"
297
- "\n"
298
- "QScrollBar:vertical\n"
299
- " {\n"
300
- " background-color: rgba(200,200,200,50); ;\n"
301
- " width: 15px;\n"
302
- " margin: 10px 3px 10px 3px;\n"
303
- " border: 1px transparent #2A2929;\n"
304
- " border-radius: 4px;\n"
305
- " }\n"
306
- "\n"
307
- "QScrollBar::handle:vertical\n"
308
- " {\n"
309
- " background-color: rgba(180,180,180,180); /* #605F5F; */\n"
310
- " min-height: 30px;\n"
311
- " border-radius: 4px;\n"
312
- " }\n"
313
- "\n"
314
- "QScrollBar::add-line {\n"
315
- " border: none;\n"
316
- " "
317
- " background: none;\n"
318
- " }\n"
319
- "\n"
320
- "QScrollBar::sub-line {\n"
321
- " border: none;\n"
322
- " background: none;\n"
323
- " }\n"
324
- "")
325
- self.scrollArea_list_ref.setWidgetResizable(True)
326
- self.scrollAreaWidgetContents = QWidget()
327
- self.scrollAreaWidgetContents.setObjectName(u"scrollAreaWidgetContents")
328
- self.scrollAreaWidgetContents.setGeometry(QRect(0, 0, 636, 530))
329
- self.scrollAreaWidgetContents.setStyleSheet(u"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
330
- "<ui version=\"4.0\">\n"
331
- " <widget name=\"__qt_fake_top_level\">\n"
332
- " <widget class=\"QLabel\" name=\"list_ref\">\n"
333
- " <property name=\"geometry\">\n"
334
- " <rect>\n"
335
- " <x>20</x>\n"
336
- " <y>12</y>\n"
337
- " <width>636</width>\n"
338
- " <height>433</height>\n"
339
- " </rect>\n"
340
- " </property>\n"
341
- " <property name=\"text\">\n"
342
- " <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;justify&quot;&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;Please cite the following works if you intend to use PaIRS-UniNa for your purposes: &lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;justify&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:700;&quot;&gt;[1] &lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;Astarita, T., &amp;amp; Cardone, G. (2005). &amp;quot;Analysis of interpolation schemes for image deformation methods in PIV&amp;quot;. &lt;/span&gt;&lt;span style=&quot; font-size:11pt; font-style:italic;&quot;&gt;Experiments in Fluids&lt;/span"
343
- "&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;, 38(2), 233-243.doi: &lt;/span&gt;&lt;a href=&quot;https://doi.org/10.1007/s00348-004-0902-3&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;10.1007/s00348-004-0902-3&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;. &lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;justify&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:700;&quot;&gt;[2] &lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;Astarita, T. (2006). &amp;quot;Analysis of interpolation schemes for image deformation methods in PIV: effect of noise on the accuracy and spatial resolution&amp;quot;. &lt;/span&gt;&lt;span style=&quot; font-size:11pt; font-style:italic;&quot;&gt;Experiments in Fluids&lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;, vol. 40 (6): 977-987. doi: &lt;/span&gt;&lt;a href=&quot;https://doi.org/10.1007/s00348-006-0139-4&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;1"
344
- "0.1007/s00348-006-0139-4&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;. &lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;justify&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:700;&quot;&gt;[3] &lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;Astarita, T. (2007). &amp;quot;Analysis of weighting windows for image deformation methods in PIV.&amp;quot; &lt;/span&gt;&lt;span style=&quot; font-size:11pt; font-style:italic;&quot;&gt;Experiments in Fluids&lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;, 43(6), 859-872. doi: &lt;/span&gt;&lt;a href=&quot;https://doi.org/10.1007/s00348-007-0314-2&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;10.1007/s00348-007-0314-2&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;. &lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;justify&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:700;&quot;&gt;[4]&lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt; Astarita, T. "
345
- "(2008). &amp;quot;Analysis of velocity interpolation schemes for image deformation methods in PIV&amp;quot;. &lt;/span&gt;&lt;span style=&quot; font-size:11pt; font-style:italic;&quot;&gt;Experiments in Fluids&lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;, 45(2), 257-266. doi: &lt;/span&gt;&lt;a href=&quot;https://doi.org/10.1007/s00348-008-0475-7&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;10.1007/s00348-008-0475-7&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;. &lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;justify&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:700;&quot;&gt;[5] &lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;Astarita, T. (2009). &amp;quot;Adaptive space resolution for PIV&amp;quot;. &lt;/span&gt;&lt;span style=&quot; font-size:11pt; font-style:italic;&quot;&gt;Experiments in Fluids&lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;, 46(6), 1115-1123. doi: &lt;/span&gt;&lt;a href=&quot;http"
346
- "s://doi.org/10.1007/s00348-009-0618-5&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;10.1007/s00348-009-0618-5&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;. &lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n"
347
- " </property>\n"
348
- " <property name=\"textFormat\">\n"
349
- " <enum>Qt::RichText</enum>\n"
350
- " </property>\n"
351
- " <property name=\"alignment\">\n"
352
- " <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>\n"
353
- " </property>\n"
354
- " <property name=\"wordWrap\">\n"
355
- " <bool>true</bool>\n"
356
- " </property>\n"
357
- " <property name=\"margin\">\n"
358
- " <number>5</number>\n"
359
- " </property>\n"
360
- " <property name=\"openExternalLinks\">\n"
361
- " <bool>true</bool>\n"
362
- " </property>\n"
363
- " <property name=\"textInteractionFlags\">\n"
364
- " <set>Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse|Qt::TextBrowserInteraction|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse</set>\n"
365
- " </property>\n"
366
- " </widget>\n"
367
- " </widget>\n"
368
- " <resour"
369
- "ces/>\n"
370
- "</ui>\n"
371
- "")
372
- self.verticalLayout_3 = QVBoxLayout(self.scrollAreaWidgetContents)
373
- self.verticalLayout_3.setSpacing(0)
374
- self.verticalLayout_3.setObjectName(u"verticalLayout_3")
375
- self.verticalLayout_3.setContentsMargins(0, 0, 0, 0)
376
- self.list_ref = QLabel(self.scrollAreaWidgetContents)
377
- self.list_ref.setObjectName(u"list_ref")
378
- self.list_ref.setTextFormat(Qt.TextFormat.RichText)
379
- self.list_ref.setAlignment(Qt.AlignmentFlag.AlignLeading|Qt.AlignmentFlag.AlignLeft|Qt.AlignmentFlag.AlignTop)
380
- self.list_ref.setWordWrap(True)
381
- self.list_ref.setMargin(5)
382
- self.list_ref.setOpenExternalLinks(True)
383
- self.list_ref.setTextInteractionFlags(Qt.TextInteractionFlag.LinksAccessibleByKeyboard|Qt.TextInteractionFlag.LinksAccessibleByMouse|Qt.TextInteractionFlag.TextBrowserInteraction|Qt.TextInteractionFlag.TextSelectableByKeyboard|Qt.TextInteractionFlag.TextSelectableByMouse)
384
-
385
- self.verticalLayout_3.addWidget(self.list_ref)
386
-
387
- self.scrollArea_list_ref.setWidget(self.scrollAreaWidgetContents)
388
-
389
- self.horizontalLayout_2.addWidget(self.scrollArea_list_ref)
390
-
391
- self.tabWidget.addTab(self.references, "")
392
-
393
- self.horizontalLayout.addWidget(self.tabWidget)
394
-
395
- InfoPaiRS.setCentralWidget(self.centralwidget)
396
- self.menubar = QMenuBar(InfoPaiRS)
397
- self.menubar.setObjectName(u"menubar")
398
- self.menubar.setGeometry(QRect(0, 0, 700, 43))
399
- InfoPaiRS.setMenuBar(self.menubar)
400
-
401
- self.retranslateUi(InfoPaiRS)
402
-
403
- self.tabWidget.setCurrentIndex(0)
404
-
405
-
406
- QMetaObject.connectSlotsByName(InfoPaiRS)
407
- # setupUi
408
-
409
- def retranslateUi(self, InfoPaiRS):
410
- InfoPaiRS.setWindowTitle(QCoreApplication.translate("InfoPaiRS", u"About PaIRS", None))
411
- self.logo.setText("")
412
- self.info.setText(QCoreApplication.translate("InfoPaiRS", u"<html><head/><body><p><span style=\" font-size:18pt; font-weight:700;\">PaIRS - version: #.#.#</span></p><p><span style=\" font-size:16pt; font-weight:700;\">Pa</span><span style=\" font-size:16pt;\">rticle </span><span style=\" font-size:16pt; font-weight:700;\">I</span><span style=\" font-size:16pt;\">mage </span><span style=\" font-size:16pt; font-weight:700;\">R</span><span style=\" font-size:16pt;\">econstruction </span><span style=\" font-size:16pt; font-weight:700;\">S</span><span style=\" font-size:16pt;\">oftware</span></p><p><span style=\" font-size:16pt;\">\u00a9 yyyy Gerardo Paolillo &amp; Tommaso Astarita. All rights reserved. </span></p><p>date: dddd/dd/dd</p><p><span style=\" font-size:16pt;\">email: </span>mmmm</p><p>website: wwww</p><p><br/></p></body></html>", None))
413
- self.unina_dii.setText("")
414
- self.info_uni.setText(QCoreApplication.translate("InfoPaiRS", u"<html><head/><body><p><span style=\" font-size:12pt;\">Experimental Thermo-Fluid Dynamics (ETFD) group, Department of Industrial Engineering (DII)</span></p><p><span style=\" font-size:12pt;\">University of Naples &quot;Federico II&quot;, Naples, Italy</span></p></body></html>", None))
415
- self.tabWidget.setTabText(self.tabWidget.indexOf(self.about), QCoreApplication.translate("InfoPaiRS", u"About PaIRS", None))
416
- self.tom.setText("")
417
- self.ger.setText("")
418
- self.ger_cv.setText(QCoreApplication.translate("InfoPaiRS", u"<html><head/><body><p align=\"justify\"><span style=\" font-weight:700;\">Gerardo Paolillo</span><span style=\" font-size:10pt;\"> received a Master's degree in Aerospace Engineering and a PhD degree in Industrial Engineering from Universit\u00e0 di Napoli &quot;Federico II&quot; in 2015 and 2018, respectively. </span></p><p align=\"justify\"><span style=\" font-size:10pt;\">He is currently a Research Associate in the Department of Industrial Engineering at Universit\u00e0 di Napoli &quot;Federico II&quot;.</span></p><p align=\"justify\"><span style=\" font-size:10pt;\">His research interests lie in the area of experimental fluid mechanics, with focus on applications of unsteady jets to flow control and electronics cooling, investigation into dynamics of turbulent Rayleigh-B\u00e8nard convection and development of 3D optical velocimetry techniques.</span></p></body></html>", None))
419
- self.tom_cv.setText(QCoreApplication.translate("InfoPaiRS", u"<html><head/><body><p align=\"justify\"><span style=\" font-weight:700;\">Tommaso Astarita</span><span style=\" font-size:10pt;\"> received a Master's degree in Aeronautical Engineering in 1993 and a PhD degree in Aerospace Engineering in 1997, both from Universit\u00e0 di Napoli &quot;Federico II&quot;. </span></p><p align=\"justify\"><span style=\" font-size:10pt;\">He was Post-doc at the von K\u00e0rm\u00e0n Institute for Fluid Dynamics and he is currently full Professor of Fluid Mechanics at Universit\u00e0 di Napoli &quot;Federico II&quot;. </span></p><p align=\"justify\"><span style=\" font-size:10pt;\">His main research interests are dedicated to the experimental study of problems in the fields of fluid mechanics and convective heat transfer, in particular, the application and development of IR thermography and stereoscopic and tomographic PIV techniques for fluid mechanics problems.</span></p></body></html>", None))
420
- self.tabWidget.setTabText(self.tabWidget.indexOf(self.authors), QCoreApplication.translate("InfoPaiRS", u"Authors", None))
421
- self.list_ref.setText(QCoreApplication.translate("InfoPaiRS", u"<html><head/><body><p align=\"justify\"><span style=\" font-size:11pt;\">Please cite the following works if you intend to use PaIRS-UniNa for your purposes: </span></p><p align=\"justify\"><span style=\" font-size:11pt; font-weight:700;\">[1] </span><span style=\" font-size:11pt;\">Astarita, T., &amp; Cardone, G. (2005). &quot;Analysis of interpolation schemes for image deformation methods in PIV&quot;. </span><span style=\" font-size:11pt; font-style:italic;\">Experiments in Fluids</span><span style=\" font-size:11pt;\">, 38(2), 233-243.doi: </span><a href=\"https://doi.org/10.1007/s00348-004-0902-3\"><span style=\" text-decoration: underline; color:#0000ff;\">10.1007/s00348-004-0902-3</span></a><span style=\" font-size:11pt;\">. </span></p><p align=\"justify\"><span style=\" font-size:11pt; font-weight:700;\">[2] </span><span style=\" font-size:11pt;\">Astarita, T. (2006). &quot;Analysis of interpolation schemes for image deformation methods in PIV: effect of noise on the accuracy and spatial resolution&quot"
422
- ";. </span><span style=\" font-size:11pt; font-style:italic;\">Experiments in Fluids</span><span style=\" font-size:11pt;\">, vol. 40 (6): 977-987. doi: </span><a href=\"https://doi.org/10.1007/s00348-006-0139-4\"><span style=\" text-decoration: underline; color:#0000ff;\">10.1007/s00348-006-0139-4</span></a><span style=\" font-size:11pt;\">. </span></p><p align=\"justify\"><span style=\" font-size:11pt; font-weight:700;\">[3] </span><span style=\" font-size:11pt;\">Astarita, T. (2007). &quot;Analysis of weighting windows for image deformation methods in PIV.&quot; </span><span style=\" font-size:11pt; font-style:italic;\">Experiments in Fluids</span><span style=\" font-size:11pt;\">, 43(6), 859-872. doi: </span><a href=\"https://doi.org/10.1007/s00348-007-0314-2\"><span style=\" text-decoration: underline; color:#0000ff;\">10.1007/s00348-007-0314-2</span></a><span style=\" font-size:11pt;\">. </span></p><p align=\"justify\"><span style=\" font-size:11pt; font-weight:700;\">[4]</span><span style=\" font-size:11"
423
- "pt;\"> Astarita, T. (2008). &quot;Analysis of velocity interpolation schemes for image deformation methods in PIV&quot;. </span><span style=\" font-size:11pt; font-style:italic;\">Experiments in Fluids</span><span style=\" font-size:11pt;\">, 45(2), 257-266. doi: </span><a href=\"https://doi.org/10.1007/s00348-008-0475-7\"><span style=\" text-decoration: underline; color:#0000ff;\">10.1007/s00348-008-0475-7</span></a><span style=\" font-size:11pt;\">. </span></p><p align=\"justify\"><span style=\" font-size:11pt; font-weight:700;\">[5] </span><span style=\" font-size:11pt;\">Astarita, T. (2009). &quot;Adaptive space resolution for PIV&quot;. </span><span style=\" font-size:11pt; font-style:italic;\">Experiments in Fluids</span><span style=\" font-size:11pt;\">, 46(6), 1115-1123. doi: </span><a href=\"https://doi.org/10.1007/s00348-009-0618-5\"><span style=\" text-decoration: underline; color:#0000ff;\">10.1007/s00348-009-0618-5</span></a><span style=\" font-size:11pt;\">. </span></p><p align=\"justify\"><span "
424
- "style=\" font-size:11pt; font-weight:700;\">[6] </span><span style=\" font-size:11pt;\">Giordano, R., &amp; Astarita, T. (2009). &quot;Spatial resolution of the Stereo PIV technique&quot;. </span><span style=\" font-size:11pt; font-style:italic;\">Experiments in Fluids</span><span style=\" font-size:11pt;\">, 46(4), 643.658. doi: </span><a href=\"https://doi.org/10.1007/s00348-008-0589-y\"><span style=\" text-decoration: underline; color:#0000ff;\">10.1007/s00348-008-0589-y</span></a><span style=\" font-size:11pt;\">. <br/></span></p><p align=\"justify\"><span style=\" font-size:11pt;\"><br/>Please cite the following works if you intend to use CalVi for your purposes:</span></p><p align=\"justify\"><span style=\" font-size:11pt; font-weight:700;\">[1] </span><span style=\" font-size:11pt;\">Paolillo, G., &amp; Astarita, T. (2020). &quot;Perspective camera model with refraction correction for optical velocimetry measurements in complex geometries&quot;. </span><span style=\" font-size:11pt; font-style:italic;\""
425
- ">IEEE Transactions on Pattern Analysis and Machine Intelligence, </span><span style=\" font-size:11pt;\">44(6), 3185-3196</span><span style=\" font-size:11pt; font-weight:700;\">.</span><span style=\" font-size:11pt;\"> doi: </span><a href=\"https://doi.org/10.1109/TPAMI.2020.3046467\"><span style=\" text-decoration: underline; color:#0000ff;\">10.1109/TPAMI.2020.3046467</span></a><span style=\" font-size:11pt;\">. <br/><br/></span><span style=\" font-size:11pt; font-weight:700;\">[2] </span><span style=\" font-size:11pt;\">Paolillo, G., &amp; Astarita, T. (2021). &quot;On the PIV/PTV uncertainty related to calibration of camera systems with refractive surfaces&quot;. </span><span style=\" font-size:11pt; font-style:italic;\">Measurement Science and Technology</span><span style=\" font-size:11pt;\">, 32(9), 094006. doi: </span><a href=\"https://doi.org/10.1088/1361-6501/abf3fc\"><span style=\" text-decoration: underline; color:#0000ff;\">10.1088/1361-6501/abf3fc</span></a><span style=\" font-size:11pt;\">. </s"
426
- "pan></p></body></html>", None))
427
- self.tabWidget.setTabText(self.tabWidget.indexOf(self.references), QCoreApplication.translate("InfoPaiRS", u"References", None))
428
- # retranslateUi
429
-
2
+ # -*- coding: utf-8 -*-
3
+
4
+ ################################################################################
5
+ ## Form generated from reading UI file 'infoPaIRSWjIuhO.ui'
6
+ ##
7
+ ## Created by: Qt User Interface Compiler version 6.9.1
8
+ ##
9
+ ## WARNING! All changes made in this file will be lost when recompiling UI file!
10
+ ################################################################################
11
+
12
+ from PySide6.QtCore import (QCoreApplication, QDate, QDateTime, QLocale,
13
+ QMetaObject, QObject, QPoint, QRect,
14
+ QSize, QTime, QUrl, Qt)
15
+ from PySide6.QtGui import (QBrush, QColor, QConicalGradient, QCursor,
16
+ QFont, QFontDatabase, QGradient, QIcon,
17
+ QImage, QKeySequence, QLinearGradient, QPainter,
18
+ QPalette, QPixmap, QRadialGradient, QTransform)
19
+ from PySide6.QtWidgets import (QApplication, QGridLayout, QHBoxLayout, QLabel,
20
+ QMainWindow, QMenuBar, QScrollArea, QSizePolicy,
21
+ QTabWidget, QVBoxLayout, QWidget)
22
+
23
+ class Ui_InfoPaiRS(object):
24
+ def setupUi(self, InfoPaiRS):
25
+ if not InfoPaiRS.objectName():
26
+ InfoPaiRS.setObjectName(u"InfoPaiRS")
27
+ InfoPaiRS.resize(700, 650)
28
+ InfoPaiRS.setMinimumSize(QSize(550, 600))
29
+ font = QFont()
30
+ font.setFamilies([u"Arial"])
31
+ InfoPaiRS.setFont(font)
32
+ icon = QIcon()
33
+ icon.addFile(u""+ icons_path +"icon_PaIRS.png", QSize(), QIcon.Mode.Normal, QIcon.State.Off)
34
+ InfoPaiRS.setWindowIcon(icon)
35
+ self.centralwidget = QWidget(InfoPaiRS)
36
+ self.centralwidget.setObjectName(u"centralwidget")
37
+ font1 = QFont()
38
+ font1.setFamilies([u"Arial"])
39
+ font1.setPointSize(10)
40
+ self.centralwidget.setFont(font1)
41
+ self.horizontalLayout = QHBoxLayout(self.centralwidget)
42
+ self.horizontalLayout.setObjectName(u"horizontalLayout")
43
+ self.tabWidget = QTabWidget(self.centralwidget)
44
+ self.tabWidget.setObjectName(u"tabWidget")
45
+ self.tabWidget.setAutoFillBackground(False)
46
+ self.tabWidget.setTabPosition(QTabWidget.TabPosition.North)
47
+ self.tabWidget.setTabShape(QTabWidget.TabShape.Rounded)
48
+ self.tabWidget.setDocumentMode(True)
49
+ self.tabWidget.setTabBarAutoHide(True)
50
+ self.about = QWidget()
51
+ self.about.setObjectName(u"about")
52
+ self.about.setStyleSheet(u"background-color: rgba(255, 255, 255, 0);")
53
+ self.gridLayout_2 = QGridLayout(self.about)
54
+ self.gridLayout_2.setSpacing(10)
55
+ self.gridLayout_2.setObjectName(u"gridLayout_2")
56
+ self.gridLayout_2.setContentsMargins(-1, 15, -1, -1)
57
+ self.logo = QLabel(self.about)
58
+ self.logo.setObjectName(u"logo")
59
+ self.logo.setMinimumSize(QSize(250, 250))
60
+ self.logo.setMaximumSize(QSize(250, 250))
61
+ #if QT_CONFIG(accessibility)
62
+ self.logo.setAccessibleDescription(u"")
63
+ #endif // QT_CONFIG(accessibility)
64
+ self.logo.setPixmap(QPixmap(u""+ icons_path +"logo_PaIRS_completo.png"))
65
+ self.logo.setScaledContents(True)
66
+
67
+ self.gridLayout_2.addWidget(self.logo, 0, 0, 1, 1)
68
+
69
+ self.info = QLabel(self.about)
70
+ self.info.setObjectName(u"info")
71
+ font2 = QFont()
72
+ font2.setFamilies([u"Arial"])
73
+ font2.setPointSize(14)
74
+ self.info.setFont(font2)
75
+ self.info.setTextFormat(Qt.TextFormat.RichText)
76
+ self.info.setWordWrap(True)
77
+ self.info.setOpenExternalLinks(True)
78
+ self.info.setTextInteractionFlags(Qt.TextInteractionFlag.LinksAccessibleByKeyboard|Qt.TextInteractionFlag.LinksAccessibleByMouse|Qt.TextInteractionFlag.TextBrowserInteraction|Qt.TextInteractionFlag.TextSelectableByKeyboard|Qt.TextInteractionFlag.TextSelectableByMouse)
79
+
80
+ self.gridLayout_2.addWidget(self.info, 0, 1, 1, 1)
81
+
82
+ self.unina_dii = QLabel(self.about)
83
+ self.unina_dii.setObjectName(u"unina_dii")
84
+ self.unina_dii.setMaximumSize(QSize(16777215, 90))
85
+ self.unina_dii.setPixmap(QPixmap(u""+ icons_path +"unina_dii.png"))
86
+ self.unina_dii.setAlignment(Qt.AlignmentFlag.AlignCenter)
87
+
88
+ self.gridLayout_2.addWidget(self.unina_dii, 1, 0, 1, 1)
89
+
90
+ self.info_uni = QLabel(self.about)
91
+ self.info_uni.setObjectName(u"info_uni")
92
+ self.info_uni.setTextFormat(Qt.TextFormat.RichText)
93
+ self.info_uni.setWordWrap(True)
94
+
95
+ self.gridLayout_2.addWidget(self.info_uni, 1, 1, 1, 1)
96
+
97
+ self.tabWidget.addTab(self.about, "")
98
+ self.authors = QWidget()
99
+ self.authors.setObjectName(u"authors")
100
+ self.authors.setStyleSheet(u"background-color: rgba(255, 255, 255, 0);")
101
+ self.gridLayout = QGridLayout(self.authors)
102
+ self.gridLayout.setSpacing(20)
103
+ self.gridLayout.setObjectName(u"gridLayout")
104
+ self.gridLayout.setContentsMargins(-1, 15, -1, -1)
105
+ self.tom = QLabel(self.authors)
106
+ self.tom.setObjectName(u"tom")
107
+ self.tom.setMinimumSize(QSize(150, 150))
108
+ self.tom.setMaximumSize(QSize(150, 150))
109
+ self.tom.setPixmap(QPixmap(u""+ icons_path +"tom.png"))
110
+ self.tom.setScaledContents(True)
111
+
112
+ self.gridLayout.addWidget(self.tom, 1, 0, 1, 1)
113
+
114
+ self.ger = QLabel(self.authors)
115
+ self.ger.setObjectName(u"ger")
116
+ self.ger.setMinimumSize(QSize(150, 150))
117
+ self.ger.setMaximumSize(QSize(150, 150))
118
+ self.ger.setPixmap(QPixmap(u""+ icons_path +"ger.png"))
119
+ self.ger.setScaledContents(True)
120
+
121
+ self.gridLayout.addWidget(self.ger, 0, 0, 1, 1)
122
+
123
+ self.scrollArea_ger_cv = QScrollArea(self.authors)
124
+ self.scrollArea_ger_cv.setObjectName(u"scrollArea_ger_cv")
125
+ self.scrollArea_ger_cv.setStyleSheet(u" QScrollArea {\n"
126
+ " border: 1pix solid gray;\n"
127
+ " }\n"
128
+ "\n"
129
+ "QScrollBar:horizontal\n"
130
+ " {\n"
131
+ " height: 15px;\n"
132
+ " margin: 3px 0px 3px 0px;\n"
133
+ " border: 1px transparent #2A2929;\n"
134
+ " border-radius: 4px;\n"
135
+ " background-color: rgba(200,200,200,50); /* #2A2929; */\n"
136
+ " }\n"
137
+ "\n"
138
+ "QScrollBar::handle:horizontal\n"
139
+ " {\n"
140
+ " background-color: rgba(180,180,180,180); /* #605F5F; */\n"
141
+ " min-width: 30px;\n"
142
+ " border-radius: 4px;\n"
143
+ " }\n"
144
+ "\n"
145
+ "QScrollBar:vertical\n"
146
+ " {\n"
147
+ " background-color: rgba(200,200,200,50); ;\n"
148
+ " width: 15px;\n"
149
+ " margin: 10px 3px 10px 3px;\n"
150
+ " border: 1px transparent #2A2929;\n"
151
+ " border-radius: 4px;\n"
152
+ " }\n"
153
+ "\n"
154
+ "QScrollBar::handle:vertical\n"
155
+ " {\n"
156
+ " background-color: rgba(180,180,180,180); /* #605F5F; */\n"
157
+ " min-height: 30px;\n"
158
+ " border-radius: 4px;\n"
159
+ " }\n"
160
+ "\n"
161
+ "QScrollBar::add-line {\n"
162
+ " border: none;\n"
163
+ " "
164
+ " background: none;\n"
165
+ " }\n"
166
+ "\n"
167
+ "QScrollBar::sub-line {\n"
168
+ " border: none;\n"
169
+ " background: none;\n"
170
+ " }\n"
171
+ "")
172
+ self.scrollArea_ger_cv.setWidgetResizable(True)
173
+ self.scrollAreaWidgetContents_ger_cv = QWidget()
174
+ self.scrollAreaWidgetContents_ger_cv.setObjectName(u"scrollAreaWidgetContents_ger_cv")
175
+ self.scrollAreaWidgetContents_ger_cv.setGeometry(QRect(0, 0, 494, 266))
176
+ self.verticalLayout = QVBoxLayout(self.scrollAreaWidgetContents_ger_cv)
177
+ self.verticalLayout.setSpacing(0)
178
+ self.verticalLayout.setObjectName(u"verticalLayout")
179
+ self.verticalLayout.setContentsMargins(0, 0, 0, 0)
180
+ self.ger_cv = QLabel(self.scrollAreaWidgetContents_ger_cv)
181
+ self.ger_cv.setObjectName(u"ger_cv")
182
+ font3 = QFont()
183
+ font3.setFamilies([u"Arial"])
184
+ font3.setPointSize(11)
185
+ self.ger_cv.setFont(font3)
186
+ self.ger_cv.setTextFormat(Qt.TextFormat.RichText)
187
+ self.ger_cv.setScaledContents(True)
188
+ self.ger_cv.setWordWrap(True)
189
+ self.ger_cv.setMargin(5)
190
+ self.ger_cv.setIndent(-5)
191
+
192
+ self.verticalLayout.addWidget(self.ger_cv)
193
+
194
+ self.scrollArea_ger_cv.setWidget(self.scrollAreaWidgetContents_ger_cv)
195
+
196
+ self.gridLayout.addWidget(self.scrollArea_ger_cv, 0, 1, 1, 1)
197
+
198
+ self.scrollArea_tom_cv = QScrollArea(self.authors)
199
+ self.scrollArea_tom_cv.setObjectName(u"scrollArea_tom_cv")
200
+ self.scrollArea_tom_cv.setStyleSheet(u" QScrollArea {\n"
201
+ " border: 1pix solid gray;\n"
202
+ " }\n"
203
+ "\n"
204
+ "QScrollBar:horizontal\n"
205
+ " {\n"
206
+ " height: 15px;\n"
207
+ " margin: 3px 0px 3px 0px;\n"
208
+ " border: 1px transparent #2A2929;\n"
209
+ " border-radius: 4px;\n"
210
+ " background-color: rgba(200,200,200,50); /* #2A2929; */\n"
211
+ " }\n"
212
+ "\n"
213
+ "QScrollBar::handle:horizontal\n"
214
+ " {\n"
215
+ " background-color: rgba(180,180,180,180); /* #605F5F; */\n"
216
+ " min-width: 30px;\n"
217
+ " border-radius: 4px;\n"
218
+ " }\n"
219
+ "\n"
220
+ "QScrollBar:vertical\n"
221
+ " {\n"
222
+ " background-color: rgba(200,200,200,50); ;\n"
223
+ " width: 15px;\n"
224
+ " margin: 10px 3px 10px 3px;\n"
225
+ " border: 1px transparent #2A2929;\n"
226
+ " border-radius: 4px;\n"
227
+ " }\n"
228
+ "\n"
229
+ "QScrollBar::handle:vertical\n"
230
+ " {\n"
231
+ " background-color: rgba(180,180,180,180); /* #605F5F; */\n"
232
+ " min-height: 30px;\n"
233
+ " border-radius: 4px;\n"
234
+ " }\n"
235
+ "\n"
236
+ "QScrollBar::add-line {\n"
237
+ " border: none;\n"
238
+ " "
239
+ " background: none;\n"
240
+ " }\n"
241
+ "\n"
242
+ "QScrollBar::sub-line {\n"
243
+ " border: none;\n"
244
+ " background: none;\n"
245
+ " }\n"
246
+ "")
247
+ self.scrollArea_tom_cv.setWidgetResizable(True)
248
+ self.scrollAreaWidgetContents_tom_cv = QWidget()
249
+ self.scrollAreaWidgetContents_tom_cv.setObjectName(u"scrollAreaWidgetContents_tom_cv")
250
+ self.scrollAreaWidgetContents_tom_cv.setGeometry(QRect(0, 0, 494, 266))
251
+ self.verticalLayout_2 = QVBoxLayout(self.scrollAreaWidgetContents_tom_cv)
252
+ self.verticalLayout_2.setSpacing(0)
253
+ self.verticalLayout_2.setObjectName(u"verticalLayout_2")
254
+ self.verticalLayout_2.setContentsMargins(0, 0, 0, 0)
255
+ self.tom_cv = QLabel(self.scrollAreaWidgetContents_tom_cv)
256
+ self.tom_cv.setObjectName(u"tom_cv")
257
+ self.tom_cv.setFont(font3)
258
+ self.tom_cv.setTextFormat(Qt.TextFormat.RichText)
259
+ self.tom_cv.setWordWrap(True)
260
+ self.tom_cv.setMargin(5)
261
+ self.tom_cv.setIndent(-5)
262
+
263
+ self.verticalLayout_2.addWidget(self.tom_cv)
264
+
265
+ self.scrollArea_tom_cv.setWidget(self.scrollAreaWidgetContents_tom_cv)
266
+
267
+ self.gridLayout.addWidget(self.scrollArea_tom_cv, 1, 1, 1, 1)
268
+
269
+ self.tabWidget.addTab(self.authors, "")
270
+ self.references = QWidget()
271
+ self.references.setObjectName(u"references")
272
+ self.references.setStyleSheet(u"background-color: rgba(255, 255, 255, 0);")
273
+ self.horizontalLayout_2 = QHBoxLayout(self.references)
274
+ self.horizontalLayout_2.setObjectName(u"horizontalLayout_2")
275
+ self.horizontalLayout_2.setContentsMargins(-1, 15, -1, -1)
276
+ self.scrollArea_list_ref = QScrollArea(self.references)
277
+ self.scrollArea_list_ref.setObjectName(u"scrollArea_list_ref")
278
+ self.scrollArea_list_ref.setStyleSheet(u" QScrollArea {\n"
279
+ " border: 1pix solid gray;\n"
280
+ " }\n"
281
+ "\n"
282
+ "QScrollBar:horizontal\n"
283
+ " {\n"
284
+ " height: 15px;\n"
285
+ " margin: 3px 0px 3px 0px;\n"
286
+ " border: 1px transparent #2A2929;\n"
287
+ " border-radius: 4px;\n"
288
+ " background-color: rgba(200,200,200,50); /* #2A2929; */\n"
289
+ " }\n"
290
+ "\n"
291
+ "QScrollBar::handle:horizontal\n"
292
+ " {\n"
293
+ " background-color: rgba(180,180,180,180); /* #605F5F; */\n"
294
+ " min-width: 30px;\n"
295
+ " border-radius: 4px;\n"
296
+ " }\n"
297
+ "\n"
298
+ "QScrollBar:vertical\n"
299
+ " {\n"
300
+ " background-color: rgba(200,200,200,50); ;\n"
301
+ " width: 15px;\n"
302
+ " margin: 10px 3px 10px 3px;\n"
303
+ " border: 1px transparent #2A2929;\n"
304
+ " border-radius: 4px;\n"
305
+ " }\n"
306
+ "\n"
307
+ "QScrollBar::handle:vertical\n"
308
+ " {\n"
309
+ " background-color: rgba(180,180,180,180); /* #605F5F; */\n"
310
+ " min-height: 30px;\n"
311
+ " border-radius: 4px;\n"
312
+ " }\n"
313
+ "\n"
314
+ "QScrollBar::add-line {\n"
315
+ " border: none;\n"
316
+ " "
317
+ " background: none;\n"
318
+ " }\n"
319
+ "\n"
320
+ "QScrollBar::sub-line {\n"
321
+ " border: none;\n"
322
+ " background: none;\n"
323
+ " }\n"
324
+ "")
325
+ self.scrollArea_list_ref.setWidgetResizable(True)
326
+ self.scrollAreaWidgetContents = QWidget()
327
+ self.scrollAreaWidgetContents.setObjectName(u"scrollAreaWidgetContents")
328
+ self.scrollAreaWidgetContents.setGeometry(QRect(0, 0, 649, 582))
329
+ self.scrollAreaWidgetContents.setStyleSheet(u"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
330
+ "<ui version=\"4.0\">\n"
331
+ " <widget name=\"__qt_fake_top_level\">\n"
332
+ " <widget class=\"QLabel\" name=\"list_ref\">\n"
333
+ " <property name=\"geometry\">\n"
334
+ " <rect>\n"
335
+ " <x>20</x>\n"
336
+ " <y>12</y>\n"
337
+ " <width>636</width>\n"
338
+ " <height>433</height>\n"
339
+ " </rect>\n"
340
+ " </property>\n"
341
+ " <property name=\"text\">\n"
342
+ " <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;justify&quot;&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;Please cite the following works if you intend to use PaIRS-UniNa for your purposes: &lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;justify&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:700;&quot;&gt;[1] &lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;Astarita, T., &amp;amp; Cardone, G. (2005). &amp;quot;Analysis of interpolation schemes for image deformation methods in PIV&amp;quot;. &lt;/span&gt;&lt;span style=&quot; font-size:11pt; font-style:italic;&quot;&gt;Experiments in Fluids&lt;/span"
343
+ "&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;, 38(2), 233-243.doi: &lt;/span&gt;&lt;a href=&quot;https://doi.org/10.1007/s00348-004-0902-3&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;10.1007/s00348-004-0902-3&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;. &lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;justify&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:700;&quot;&gt;[2] &lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;Astarita, T. (2006). &amp;quot;Analysis of interpolation schemes for image deformation methods in PIV: effect of noise on the accuracy and spatial resolution&amp;quot;. &lt;/span&gt;&lt;span style=&quot; font-size:11pt; font-style:italic;&quot;&gt;Experiments in Fluids&lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;, vol. 40 (6): 977-987. doi: &lt;/span&gt;&lt;a href=&quot;https://doi.org/10.1007/s00348-006-0139-4&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;1"
344
+ "0.1007/s00348-006-0139-4&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;. &lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;justify&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:700;&quot;&gt;[3] &lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;Astarita, T. (2007). &amp;quot;Analysis of weighting windows for image deformation methods in PIV.&amp;quot; &lt;/span&gt;&lt;span style=&quot; font-size:11pt; font-style:italic;&quot;&gt;Experiments in Fluids&lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;, 43(6), 859-872. doi: &lt;/span&gt;&lt;a href=&quot;https://doi.org/10.1007/s00348-007-0314-2&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;10.1007/s00348-007-0314-2&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;. &lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;justify&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:700;&quot;&gt;[4]&lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt; Astarita, T. "
345
+ "(2008). &amp;quot;Analysis of velocity interpolation schemes for image deformation methods in PIV&amp;quot;. &lt;/span&gt;&lt;span style=&quot; font-size:11pt; font-style:italic;&quot;&gt;Experiments in Fluids&lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;, 45(2), 257-266. doi: &lt;/span&gt;&lt;a href=&quot;https://doi.org/10.1007/s00348-008-0475-7&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;10.1007/s00348-008-0475-7&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;. &lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;justify&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:700;&quot;&gt;[5] &lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;Astarita, T. (2009). &amp;quot;Adaptive space resolution for PIV&amp;quot;. &lt;/span&gt;&lt;span style=&quot; font-size:11pt; font-style:italic;&quot;&gt;Experiments in Fluids&lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;, 46(6), 1115-1123. doi: &lt;/span&gt;&lt;a href=&quot;http"
346
+ "s://doi.org/10.1007/s00348-009-0618-5&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;10.1007/s00348-009-0618-5&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;. &lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n"
347
+ " </property>\n"
348
+ " <property name=\"textFormat\">\n"
349
+ " <enum>Qt::RichText</enum>\n"
350
+ " </property>\n"
351
+ " <property name=\"alignment\">\n"
352
+ " <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>\n"
353
+ " </property>\n"
354
+ " <property name=\"wordWrap\">\n"
355
+ " <bool>true</bool>\n"
356
+ " </property>\n"
357
+ " <property name=\"margin\">\n"
358
+ " <number>5</number>\n"
359
+ " </property>\n"
360
+ " <property name=\"openExternalLinks\">\n"
361
+ " <bool>true</bool>\n"
362
+ " </property>\n"
363
+ " <property name=\"textInteractionFlags\">\n"
364
+ " <set>Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse|Qt::TextBrowserInteraction|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse</set>\n"
365
+ " </property>\n"
366
+ " </widget>\n"
367
+ " </widget>\n"
368
+ " <resour"
369
+ "ces/>\n"
370
+ "</ui>\n"
371
+ "")
372
+ self.verticalLayout_3 = QVBoxLayout(self.scrollAreaWidgetContents)
373
+ self.verticalLayout_3.setSpacing(0)
374
+ self.verticalLayout_3.setObjectName(u"verticalLayout_3")
375
+ self.verticalLayout_3.setContentsMargins(0, 0, 0, 0)
376
+ self.list_ref = QLabel(self.scrollAreaWidgetContents)
377
+ self.list_ref.setObjectName(u"list_ref")
378
+ self.list_ref.setTextFormat(Qt.TextFormat.RichText)
379
+ self.list_ref.setAlignment(Qt.AlignmentFlag.AlignLeading|Qt.AlignmentFlag.AlignLeft|Qt.AlignmentFlag.AlignTop)
380
+ self.list_ref.setWordWrap(True)
381
+ self.list_ref.setMargin(5)
382
+ self.list_ref.setOpenExternalLinks(True)
383
+ self.list_ref.setTextInteractionFlags(Qt.TextInteractionFlag.LinksAccessibleByKeyboard|Qt.TextInteractionFlag.LinksAccessibleByMouse|Qt.TextInteractionFlag.TextBrowserInteraction|Qt.TextInteractionFlag.TextSelectableByKeyboard|Qt.TextInteractionFlag.TextSelectableByMouse)
384
+
385
+ self.verticalLayout_3.addWidget(self.list_ref)
386
+
387
+ self.scrollArea_list_ref.setWidget(self.scrollAreaWidgetContents)
388
+
389
+ self.horizontalLayout_2.addWidget(self.scrollArea_list_ref)
390
+
391
+ self.tabWidget.addTab(self.references, "")
392
+ self.requirements = QWidget()
393
+ self.requirements.setObjectName(u"requirements")
394
+ self.horizontalLayout_3 = QHBoxLayout(self.requirements)
395
+ self.horizontalLayout_3.setObjectName(u"horizontalLayout_3")
396
+ self.scrollArea_req = QScrollArea(self.requirements)
397
+ self.scrollArea_req.setObjectName(u"scrollArea_req")
398
+ self.scrollArea_req.setStyleSheet(u" QScrollArea {\n"
399
+ " border: 1pix solid gray;\n"
400
+ " }\n"
401
+ "\n"
402
+ "QScrollBar:horizontal\n"
403
+ " {\n"
404
+ " height: 15px;\n"
405
+ " margin: 3px 0px 3px 0px;\n"
406
+ " border: 1px transparent #2A2929;\n"
407
+ " border-radius: 4px;\n"
408
+ " background-color: rgba(200,200,200,50); /* #2A2929; */\n"
409
+ " }\n"
410
+ "\n"
411
+ "QScrollBar::handle:horizontal\n"
412
+ " {\n"
413
+ " background-color: rgba(180,180,180,180); /* #605F5F; */\n"
414
+ " min-width: 30px;\n"
415
+ " border-radius: 4px;\n"
416
+ " }\n"
417
+ "\n"
418
+ "QScrollBar:vertical\n"
419
+ " {\n"
420
+ " background-color: rgba(200,200,200,50); ;\n"
421
+ " width: 15px;\n"
422
+ " margin: 10px 3px 10px 3px;\n"
423
+ " border: 1px transparent #2A2929;\n"
424
+ " border-radius: 4px;\n"
425
+ " }\n"
426
+ "\n"
427
+ "QScrollBar::handle:vertical\n"
428
+ " {\n"
429
+ " background-color: rgba(180,180,180,180); /* #605F5F; */\n"
430
+ " min-height: 30px;\n"
431
+ " border-radius: 4px;\n"
432
+ " }\n"
433
+ "\n"
434
+ "QScrollBar::add-line {\n"
435
+ " border: none;\n"
436
+ " "
437
+ " background: none;\n"
438
+ " }\n"
439
+ "\n"
440
+ "QScrollBar::sub-line {\n"
441
+ " border: none;\n"
442
+ " background: none;\n"
443
+ " }\n"
444
+ "")
445
+ self.scrollArea_req.setWidgetResizable(True)
446
+ self.scrollAreaWidgetContents_2 = QWidget()
447
+ self.scrollAreaWidgetContents_2.setObjectName(u"scrollAreaWidgetContents_2")
448
+ self.scrollAreaWidgetContents_2.setGeometry(QRect(0, 0, 664, 558))
449
+ self.scrollAreaWidgetContents_2.setStyleSheet(u"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
450
+ "<ui version=\"4.0\">\n"
451
+ " <widget name=\"__qt_fake_top_level\">\n"
452
+ " <widget class=\"QLabel\" name=\"list_ref\">\n"
453
+ " <property name=\"geometry\">\n"
454
+ " <rect>\n"
455
+ " <x>20</x>\n"
456
+ " <y>12</y>\n"
457
+ " <width>636</width>\n"
458
+ " <height>433</height>\n"
459
+ " </rect>\n"
460
+ " </property>\n"
461
+ " <property name=\"text\">\n"
462
+ " <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;justify&quot;&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;Please cite the following works if you intend to use PaIRS-UniNa for your purposes: &lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;justify&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:700;&quot;&gt;[1] &lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;Astarita, T., &amp;amp; Cardone, G. (2005). &amp;quot;Analysis of interpolation schemes for image deformation methods in PIV&amp;quot;. &lt;/span&gt;&lt;span style=&quot; font-size:11pt; font-style:italic;&quot;&gt;Experiments in Fluids&lt;/span"
463
+ "&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;, 38(2), 233-243.doi: &lt;/span&gt;&lt;a href=&quot;https://doi.org/10.1007/s00348-004-0902-3&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;10.1007/s00348-004-0902-3&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;. &lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;justify&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:700;&quot;&gt;[2] &lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;Astarita, T. (2006). &amp;quot;Analysis of interpolation schemes for image deformation methods in PIV: effect of noise on the accuracy and spatial resolution&amp;quot;. &lt;/span&gt;&lt;span style=&quot; font-size:11pt; font-style:italic;&quot;&gt;Experiments in Fluids&lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;, vol. 40 (6): 977-987. doi: &lt;/span&gt;&lt;a href=&quot;https://doi.org/10.1007/s00348-006-0139-4&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;1"
464
+ "0.1007/s00348-006-0139-4&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;. &lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;justify&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:700;&quot;&gt;[3] &lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;Astarita, T. (2007). &amp;quot;Analysis of weighting windows for image deformation methods in PIV.&amp;quot; &lt;/span&gt;&lt;span style=&quot; font-size:11pt; font-style:italic;&quot;&gt;Experiments in Fluids&lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;, 43(6), 859-872. doi: &lt;/span&gt;&lt;a href=&quot;https://doi.org/10.1007/s00348-007-0314-2&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;10.1007/s00348-007-0314-2&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;. &lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;justify&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:700;&quot;&gt;[4]&lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt; Astarita, T. "
465
+ "(2008). &amp;quot;Analysis of velocity interpolation schemes for image deformation methods in PIV&amp;quot;. &lt;/span&gt;&lt;span style=&quot; font-size:11pt; font-style:italic;&quot;&gt;Experiments in Fluids&lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;, 45(2), 257-266. doi: &lt;/span&gt;&lt;a href=&quot;https://doi.org/10.1007/s00348-008-0475-7&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;10.1007/s00348-008-0475-7&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;. &lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;justify&quot;&gt;&lt;span style=&quot; font-size:11pt; font-weight:700;&quot;&gt;[5] &lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;Astarita, T. (2009). &amp;quot;Adaptive space resolution for PIV&amp;quot;. &lt;/span&gt;&lt;span style=&quot; font-size:11pt; font-style:italic;&quot;&gt;Experiments in Fluids&lt;/span&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;, 46(6), 1115-1123. doi: &lt;/span&gt;&lt;a href=&quot;http"
466
+ "s://doi.org/10.1007/s00348-009-0618-5&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;10.1007/s00348-009-0618-5&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:11pt;&quot;&gt;. &lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>\n"
467
+ " </property>\n"
468
+ " <property name=\"textFormat\">\n"
469
+ " <enum>Qt::RichText</enum>\n"
470
+ " </property>\n"
471
+ " <property name=\"alignment\">\n"
472
+ " <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>\n"
473
+ " </property>\n"
474
+ " <property name=\"wordWrap\">\n"
475
+ " <bool>true</bool>\n"
476
+ " </property>\n"
477
+ " <property name=\"margin\">\n"
478
+ " <number>5</number>\n"
479
+ " </property>\n"
480
+ " <property name=\"openExternalLinks\">\n"
481
+ " <bool>true</bool>\n"
482
+ " </property>\n"
483
+ " <property name=\"textInteractionFlags\">\n"
484
+ " <set>Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse|Qt::TextBrowserInteraction|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse</set>\n"
485
+ " </property>\n"
486
+ " </widget>\n"
487
+ " </widget>\n"
488
+ " <resour"
489
+ "ces/>\n"
490
+ "</ui>\n"
491
+ "")
492
+ self.horizontalLayout_4 = QHBoxLayout(self.scrollAreaWidgetContents_2)
493
+ self.horizontalLayout_4.setSpacing(0)
494
+ self.horizontalLayout_4.setObjectName(u"horizontalLayout_4")
495
+ self.horizontalLayout_4.setContentsMargins(0, 0, 0, 0)
496
+ self.req = QLabel(self.scrollAreaWidgetContents_2)
497
+ self.req.setObjectName(u"req")
498
+ self.req.setTextFormat(Qt.TextFormat.RichText)
499
+ self.req.setAlignment(Qt.AlignmentFlag.AlignLeading|Qt.AlignmentFlag.AlignLeft|Qt.AlignmentFlag.AlignTop)
500
+ self.req.setWordWrap(True)
501
+ self.req.setMargin(5)
502
+ self.req.setOpenExternalLinks(True)
503
+ self.req.setTextInteractionFlags(Qt.TextInteractionFlag.LinksAccessibleByKeyboard|Qt.TextInteractionFlag.LinksAccessibleByMouse|Qt.TextInteractionFlag.TextBrowserInteraction|Qt.TextInteractionFlag.TextSelectableByKeyboard|Qt.TextInteractionFlag.TextSelectableByMouse)
504
+
505
+ self.horizontalLayout_4.addWidget(self.req)
506
+
507
+ self.scrollArea_req.setWidget(self.scrollAreaWidgetContents_2)
508
+
509
+ self.horizontalLayout_3.addWidget(self.scrollArea_req)
510
+
511
+ self.tabWidget.addTab(self.requirements, "")
512
+
513
+ self.horizontalLayout.addWidget(self.tabWidget)
514
+
515
+ InfoPaiRS.setCentralWidget(self.centralwidget)
516
+ self.menubar = QMenuBar(InfoPaiRS)
517
+ self.menubar.setObjectName(u"menubar")
518
+ self.menubar.setGeometry(QRect(0, 0, 700, 33))
519
+ InfoPaiRS.setMenuBar(self.menubar)
520
+
521
+ self.retranslateUi(InfoPaiRS)
522
+
523
+ self.tabWidget.setCurrentIndex(0)
524
+
525
+
526
+ QMetaObject.connectSlotsByName(InfoPaiRS)
527
+ # setupUi
528
+
529
+ def retranslateUi(self, InfoPaiRS):
530
+ InfoPaiRS.setWindowTitle(QCoreApplication.translate("InfoPaiRS", u"About PaIRS", None))
531
+ self.logo.setText("")
532
+ self.info.setText(QCoreApplication.translate("InfoPaiRS", u"<html><head/><body><p><span style=\" font-size:18pt; font-weight:700;\">PaIRS - version: #.#.#</span></p><p><span style=\" font-size:16pt; font-weight:700;\">Pa</span><span style=\" font-size:16pt;\">rticle </span><span style=\" font-size:16pt; font-weight:700;\">I</span><span style=\" font-size:16pt;\">mage </span><span style=\" font-size:16pt; font-weight:700;\">R</span><span style=\" font-size:16pt;\">econstruction </span><span style=\" font-size:16pt; font-weight:700;\">S</span><span style=\" font-size:16pt;\">oftware</span></p><p><span style=\" font-size:16pt;\">\u00a9 yyyy Gerardo Paolillo &amp; Tommaso Astarita. All rights reserved. </span></p><p>date: dddd/dd/dd</p><p><span style=\" font-size:16pt;\">email: </span>mmmm</p><p>website: wwww</p><p><br/></p></body></html>", None))
533
+ self.unina_dii.setText("")
534
+ self.info_uni.setText(QCoreApplication.translate("InfoPaiRS", u"<html><head/><body><p><span style=\" font-size:12pt;\">Experimental Thermo-Fluid Dynamics (ETFD) group, Department of Industrial Engineering (DII)</span></p><p><span style=\" font-size:12pt;\">University of Naples &quot;Federico II&quot;, Naples, Italy</span></p></body></html>", None))
535
+ self.tabWidget.setTabText(self.tabWidget.indexOf(self.about), QCoreApplication.translate("InfoPaiRS", u"About PaIRS", None))
536
+ self.tom.setText("")
537
+ self.ger.setText("")
538
+ self.ger_cv.setText(QCoreApplication.translate("InfoPaiRS", u"<html><head/><body><p align=\"justify\"><span style=\" font-weight:700;\">Gerardo Paolillo</span><span style=\" font-size:10pt;\"> received a Master's degree in Aerospace Engineering and a PhD degree in Industrial Engineering from Universit\u00e0 di Napoli &quot;Federico II&quot; in 2015 and 2018, respectively. </span></p><p align=\"justify\"><span style=\" font-size:10pt;\">He is currently a Research Associate in the Department of Industrial Engineering at Universit\u00e0 di Napoli &quot;Federico II&quot;.</span></p><p align=\"justify\"><span style=\" font-size:10pt;\">His research interests lie in the area of experimental fluid mechanics, with focus on applications of unsteady jets to flow control and electronics cooling, investigation into dynamics of turbulent Rayleigh-B\u00e8nard convection and development of 3D optical velocimetry techniques.</span></p></body></html>", None))
539
+ self.tom_cv.setText(QCoreApplication.translate("InfoPaiRS", u"<html><head/><body><p align=\"justify\"><span style=\" font-weight:700;\">Tommaso Astarita</span><span style=\" font-size:10pt;\"> received a Master's degree in Aeronautical Engineering in 1993 and a PhD degree in Aerospace Engineering in 1997, both from Universit\u00e0 di Napoli &quot;Federico II&quot;. </span></p><p align=\"justify\"><span style=\" font-size:10pt;\">He was Post-doc at the von K\u00e0rm\u00e0n Institute for Fluid Dynamics and he is currently full Professor of Fluid Mechanics at Universit\u00e0 di Napoli &quot;Federico II&quot;. </span></p><p align=\"justify\"><span style=\" font-size:10pt;\">His main research interests are dedicated to the experimental study of problems in the fields of fluid mechanics and convective heat transfer, in particular, the application and development of IR thermography and stereoscopic and tomographic PIV techniques for fluid mechanics problems.</span></p></body></html>", None))
540
+ self.tabWidget.setTabText(self.tabWidget.indexOf(self.authors), QCoreApplication.translate("InfoPaiRS", u"Authors", None))
541
+ self.list_ref.setText(QCoreApplication.translate("InfoPaiRS", u"<html><head/><body><p align=\"justify\"><span style=\" font-size:11pt;\">Please cite the following works if you intend to use PaIRS-UniNa for your purposes: </span></p><p align=\"justify\"><span style=\" font-size:11pt; font-weight:700;\">[1] </span><span style=\" font-size:11pt;\">Astarita, T., &amp; Cardone, G. (2005). &quot;Analysis of interpolation schemes for image deformation methods in PIV&quot;. </span><span style=\" font-size:11pt; font-style:italic;\">Experiments in Fluids</span><span style=\" font-size:11pt;\">, 38(2), 233-243.doi: </span><a href=\"https://doi.org/10.1007/s00348-004-0902-3\"><span style=\" text-decoration: underline; color:#0000ff;\">10.1007/s00348-004-0902-3</span></a><span style=\" font-size:11pt;\">. </span></p><p align=\"justify\"><span style=\" font-size:11pt; font-weight:700;\">[2] </span><span style=\" font-size:11pt;\">Astarita, T. (2006). &quot;Analysis of interpolation schemes for image deformation methods in PIV: effect of noise on the accuracy and spatial resolution&quot"
542
+ ";. </span><span style=\" font-size:11pt; font-style:italic;\">Experiments in Fluids</span><span style=\" font-size:11pt;\">, vol. 40 (6): 977-987. doi: </span><a href=\"https://doi.org/10.1007/s00348-006-0139-4\"><span style=\" text-decoration: underline; color:#0000ff;\">10.1007/s00348-006-0139-4</span></a><span style=\" font-size:11pt;\">. </span></p><p align=\"justify\"><span style=\" font-size:11pt; font-weight:700;\">[3] </span><span style=\" font-size:11pt;\">Astarita, T. (2007). &quot;Analysis of weighting windows for image deformation methods in PIV.&quot; </span><span style=\" font-size:11pt; font-style:italic;\">Experiments in Fluids</span><span style=\" font-size:11pt;\">, 43(6), 859-872. doi: </span><a href=\"https://doi.org/10.1007/s00348-007-0314-2\"><span style=\" text-decoration: underline; color:#0000ff;\">10.1007/s00348-007-0314-2</span></a><span style=\" font-size:11pt;\">. </span></p><p align=\"justify\"><span style=\" font-size:11pt; font-weight:700;\">[4]</span><span style=\" font-size:11"
543
+ "pt;\"> Astarita, T. (2008). &quot;Analysis of velocity interpolation schemes for image deformation methods in PIV&quot;. </span><span style=\" font-size:11pt; font-style:italic;\">Experiments in Fluids</span><span style=\" font-size:11pt;\">, 45(2), 257-266. doi: </span><a href=\"https://doi.org/10.1007/s00348-008-0475-7\"><span style=\" text-decoration: underline; color:#0000ff;\">10.1007/s00348-008-0475-7</span></a><span style=\" font-size:11pt;\">. </span></p><p align=\"justify\"><span style=\" font-size:11pt; font-weight:700;\">[5] </span><span style=\" font-size:11pt;\">Astarita, T. (2009). &quot;Adaptive space resolution for PIV&quot;. </span><span style=\" font-size:11pt; font-style:italic;\">Experiments in Fluids</span><span style=\" font-size:11pt;\">, 46(6), 1115-1123. doi: </span><a href=\"https://doi.org/10.1007/s00348-009-0618-5\"><span style=\" text-decoration: underline; color:#0000ff;\">10.1007/s00348-009-0618-5</span></a><span style=\" font-size:11pt;\">. </span></p><p align=\"justify\"><span "
544
+ "style=\" font-size:11pt; font-weight:700;\">[6] </span><span style=\" font-size:11pt;\">Giordano, R., &amp; Astarita, T. (2009). &quot;Spatial resolution of the Stereo PIV technique&quot;. </span><span style=\" font-size:11pt; font-style:italic;\">Experiments in Fluids</span><span style=\" font-size:11pt;\">, 46(4), 643.658. doi: </span><a href=\"https://doi.org/10.1007/s00348-008-0589-y\"><span style=\" text-decoration: underline; color:#0000ff;\">10.1007/s00348-008-0589-y</span></a><span style=\" font-size:11pt;\">. <br/></span></p><p align=\"justify\"><span style=\" font-size:11pt;\"><br/>Please cite the following works if you intend to use CalVi for your purposes:</span></p><p align=\"justify\"><span style=\" font-size:11pt; font-weight:700;\">[1] </span><span style=\" font-size:11pt;\">Paolillo, G., &amp; Astarita, T. (2020). &quot;Perspective camera model with refraction correction for optical velocimetry measurements in complex geometries&quot;. </span><span style=\" font-size:11pt; font-style:italic;\""
545
+ ">IEEE Transactions on Pattern Analysis and Machine Intelligence, </span><span style=\" font-size:11pt;\">44(6), 3185-3196</span><span style=\" font-size:11pt; font-weight:700;\">.</span><span style=\" font-size:11pt;\"> doi: </span><a href=\"https://doi.org/10.1109/TPAMI.2020.3046467\"><span style=\" text-decoration: underline; color:#0000ff;\">10.1109/TPAMI.2020.3046467</span></a><span style=\" font-size:11pt;\">. <br/><br/></span><span style=\" font-size:11pt; font-weight:700;\">[2] </span><span style=\" font-size:11pt;\">Paolillo, G., &amp; Astarita, T. (2021). &quot;On the PIV/PTV uncertainty related to calibration of camera systems with refractive surfaces&quot;. </span><span style=\" font-size:11pt; font-style:italic;\">Measurement Science and Technology</span><span style=\" font-size:11pt;\">, 32(9), 094006. doi: </span><a href=\"https://doi.org/10.1088/1361-6501/abf3fc\"><span style=\" text-decoration: underline; color:#0000ff;\">10.1088/1361-6501/abf3fc</span></a><span style=\" font-size:11pt;\">. </s"
546
+ "pan></p></body></html>", None))
547
+ self.tabWidget.setTabText(self.tabWidget.indexOf(self.references), QCoreApplication.translate("InfoPaiRS", u"References", None))
548
+ self.req.setText(QCoreApplication.translate("InfoPaiRS", u"<html><head/><body><p align=\"justify\"><br/></p></body></html>", None))
549
+ self.tabWidget.setTabText(self.tabWidget.indexOf(self.requirements), QCoreApplication.translate("InfoPaiRS", u"Requirements", None))
550
+ # retranslateUi
551
+