PaIRS-UniNa 0.2.0__cp310-cp310-win_amd64.whl → 0.2.8__cp310-cp310-win_amd64.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 (88) hide show
  1. PaIRS_UniNa/Calibration_Tab.py +39 -23
  2. PaIRS_UniNa/Changes.txt +127 -8
  3. PaIRS_UniNa/Custom_Top.py +12 -9
  4. PaIRS_UniNa/Explorer.py +534 -165
  5. PaIRS_UniNa/FolderLoop.py +562 -0
  6. PaIRS_UniNa/Input_Tab.py +261 -100
  7. PaIRS_UniNa/Input_Tab_CalVi.py +24 -25
  8. PaIRS_UniNa/Input_Tab_tools.py +967 -405
  9. PaIRS_UniNa/Output_Tab.py +324 -130
  10. PaIRS_UniNa/PaIRS_PIV.py +58 -1
  11. PaIRS_UniNa/PaIRS_pypacks.py +1415 -1039
  12. PaIRS_UniNa/Process_Tab.py +15 -19
  13. PaIRS_UniNa/Process_Tab_Disp.py +12 -5
  14. PaIRS_UniNa/Saving_tools.py +27 -13
  15. PaIRS_UniNa/TabTools.py +176 -59
  16. PaIRS_UniNa/Vis_Tab.py +664 -256
  17. PaIRS_UniNa/Vis_Tab_CalVi.py +114 -45
  18. PaIRS_UniNa/Whatsnew.py +58 -9
  19. PaIRS_UniNa/_PaIRS_PIV.pyd +0 -0
  20. PaIRS_UniNa/__init__.py +4 -3
  21. PaIRS_UniNa/addwidgets_ps.py +150 -63
  22. PaIRS_UniNa/calib.py +6 -3
  23. PaIRS_UniNa/calibView.py +19 -6
  24. PaIRS_UniNa/gPaIRS.py +1397 -543
  25. PaIRS_UniNa/icons/align_all.png +0 -0
  26. PaIRS_UniNa/icons/announcement.png +0 -0
  27. PaIRS_UniNa/icons/bugfix.png +0 -0
  28. PaIRS_UniNa/icons/change_folder.png +0 -0
  29. PaIRS_UniNa/icons/change_folder_off.png +0 -0
  30. PaIRS_UniNa/icons/close_all.png +0 -0
  31. PaIRS_UniNa/icons/copy_process_off.png +0 -0
  32. PaIRS_UniNa/icons/flaticon_PaIRS_beta.png +0 -0
  33. PaIRS_UniNa/icons/flaticon_PaIRS_download_warning.png +0 -0
  34. PaIRS_UniNa/icons/folder_loop_cleanup.png +0 -0
  35. PaIRS_UniNa/icons/folder_loop_cleanup_off.png +0 -0
  36. PaIRS_UniNa/icons/linked.png +0 -0
  37. PaIRS_UniNa/icons/logo_opaco.png +0 -0
  38. PaIRS_UniNa/icons/open_image.png +0 -0
  39. PaIRS_UniNa/icons/open_new_window.png +0 -0
  40. PaIRS_UniNa/icons/open_result.png +0 -0
  41. PaIRS_UniNa/icons/process_loop.png +0 -0
  42. PaIRS_UniNa/icons/pylog.png +0 -0
  43. PaIRS_UniNa/icons/python_warning.png +0 -0
  44. PaIRS_UniNa/icons/queue.png +0 -0
  45. PaIRS_UniNa/icons/restore_undo.png +0 -0
  46. PaIRS_UniNa/icons/save_and_stop.png +0 -0
  47. PaIRS_UniNa/icons/scale_all.png +0 -0
  48. PaIRS_UniNa/icons/scale_down.png +0 -0
  49. PaIRS_UniNa/icons/scale_up.png +0 -0
  50. PaIRS_UniNa/icons/scan_path_loop.png +0 -0
  51. PaIRS_UniNa/icons/scan_path_loop_off.png +0 -0
  52. PaIRS_UniNa/icons/show_all.png +0 -0
  53. PaIRS_UniNa/icons/star.png +0 -0
  54. PaIRS_UniNa/icons/step_inheritance.png +0 -0
  55. PaIRS_UniNa/icons/subMIN_on.png +0 -0
  56. PaIRS_UniNa/icons/unedited.png +0 -0
  57. PaIRS_UniNa/icons/uninitialized.png +0 -0
  58. PaIRS_UniNa/icons/window.png +0 -0
  59. PaIRS_UniNa/listLib.py +3 -2
  60. PaIRS_UniNa/parForMulti.py +7 -5
  61. PaIRS_UniNa/parForWorkers.py +174 -140
  62. PaIRS_UniNa/pivParFor.py +9 -11
  63. PaIRS_UniNa/preProcParFor.py +4 -4
  64. PaIRS_UniNa/procTools.py +120 -44
  65. PaIRS_UniNa/rqrdpckgs.txt +9 -0
  66. PaIRS_UniNa/stereoPivParFor.py +16 -22
  67. PaIRS_UniNa/tabSplitter.py +17 -7
  68. PaIRS_UniNa/ui_Input_Tab.py +56 -57
  69. PaIRS_UniNa/ui_Input_Tab_CalVi.py +71 -64
  70. PaIRS_UniNa/ui_Log_Tab.py +8 -6
  71. PaIRS_UniNa/ui_Output_Tab.py +180 -4
  72. PaIRS_UniNa/ui_Process_Tab.py +19 -19
  73. PaIRS_UniNa/ui_Process_Tab_Disp.py +181 -10
  74. PaIRS_UniNa/ui_Vis_Tab.py +332 -196
  75. PaIRS_UniNa/ui_Whatsnew.py +13 -13
  76. PaIRS_UniNa/ui_gPairs.py +140 -71
  77. PaIRS_UniNa/ui_infoPaIRS.py +156 -31
  78. PaIRS_UniNa/whatsnew.txt +6 -4
  79. {PaIRS_UniNa-0.2.0.dist-info → pairs_unina-0.2.8.dist-info}/METADATA +62 -26
  80. {PaIRS_UniNa-0.2.0.dist-info → pairs_unina-0.2.8.dist-info}/RECORD +82 -54
  81. {PaIRS_UniNa-0.2.0.dist-info → pairs_unina-0.2.8.dist-info}/WHEEL +1 -1
  82. PaIRS_UniNa/icons/order.png +0 -0
  83. PaIRS_UniNa/icons/order_reverse.png +0 -0
  84. PaIRS_UniNa/icons/run_piv.png +0 -0
  85. PaIRS_UniNa/stereo.py +0 -685
  86. PaIRS_UniNa/ui_infoCalVi.py +0 -428
  87. PaIRS_UniNa-0.2.0.dist-info/LICENSE +0 -19
  88. {PaIRS_UniNa-0.2.0.dist-info → pairs_unina-0.2.8.dist-info}/top_level.txt +0 -0
@@ -1,428 +0,0 @@
1
- from .addwidgets_ps import icons_path
2
- # -*- coding: utf-8 -*-
3
-
4
- ################################################################################
5
- ## Form generated from reading UI file 'infoCalVi.ui'
6
- ##
7
- ## Created by: Qt User Interface Compiler version 6.4.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_InfoCalVi(object):
24
- def setupUi(self, InfoCalVi):
25
- if not InfoCalVi.objectName():
26
- InfoCalVi.setObjectName(u"InfoCalVi")
27
- InfoCalVi.resize(700, 560)
28
- InfoCalVi.setMinimumSize(QSize(550, 500))
29
- font = QFont()
30
- font.setFamilies([u"Arial"])
31
- InfoCalVi.setFont(font)
32
- icon = QIcon()
33
- icon.addFile(u""+ icons_path +"icon_CalVi.png", QSize(), QIcon.Normal, QIcon.Off)
34
- InfoCalVi.setWindowIcon(icon)
35
- self.centralwidget = QWidget(InfoCalVi)
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.North)
47
- self.tabWidget.setTabShape(QTabWidget.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(240, 240))
60
- self.logo.setMaximumSize(QSize(240, 240))
61
- #if QT_CONFIG(accessibility)
62
- self.logo.setAccessibleDescription(u"")
63
- #endif // QT_CONFIG(accessibility)
64
- self.logo.setPixmap(QPixmap(u""+ icons_path +"logo_CalVi_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.RichText)
76
- self.info.setWordWrap(True)
77
- self.info.setOpenExternalLinks(True)
78
- self.info.setTextInteractionFlags(Qt.LinksAccessibleByKeyboard|Qt.LinksAccessibleByMouse|Qt.TextBrowserInteraction|Qt.TextSelectableByKeyboard|Qt.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.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.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, 248))
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.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, 247))
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.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, 518))
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 are intended 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"
343
- ";/span&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"
344
- ";&gt;10.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; Astarit"
345
- "a, T. (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=&quo"
346
- "t;https://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
- " <"
369
- "resources/>\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.RichText)
379
- self.list_ref.setAlignment(Qt.AlignLeading|Qt.AlignLeft|Qt.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.LinksAccessibleByKeyboard|Qt.LinksAccessibleByMouse|Qt.TextBrowserInteraction|Qt.TextSelectableByKeyboard|Qt.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
- InfoCalVi.setCentralWidget(self.centralwidget)
396
- self.menubar = QMenuBar(InfoCalVi)
397
- self.menubar.setObjectName(u"menubar")
398
- self.menubar.setGeometry(QRect(0, 0, 700, 20))
399
- InfoCalVi.setMenuBar(self.menubar)
400
-
401
- self.retranslateUi(InfoCalVi)
402
-
403
- self.tabWidget.setCurrentIndex(0)
404
-
405
-
406
- QMetaObject.connectSlotsByName(InfoCalVi)
407
- # setupUi
408
-
409
- def retranslateUi(self, InfoCalVi):
410
- InfoCalVi.setWindowTitle(QCoreApplication.translate("InfoCalVi", u"About CalVi", None))
411
- self.logo.setText("")
412
- self.info.setText(QCoreApplication.translate("InfoCalVi", u"<html><head/><body><p><span style=\" font-size:18pt; font-weight:700;\">CalVi - PaIRS version: #.#.#</span></p><p><span style=\" font-size:16pt; font-weight:700;\">Cal</span><span style=\" font-size:16pt;\">ibration </span><span style=\" font-size:16pt; font-weight:700;\">Vi</span><span style=\" font-size:16pt;\">sualizer</span></p><p><span style=\" font-size:16pt;\">\u00a9 yyyy Gerardo Paolillo &amp; Tommaso Astarita. All rights reserved. </span></p><p><span style=\" font-size:16pt;\">email: </span>mmmm</p><p>website: wwww</p></body></html>", None))
413
- self.unina_dii.setText("")
414
- self.info_uni.setText(QCoreApplication.translate("InfoCalVi", 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("InfoCalVi", u"About CalVi", None))
416
- self.tom.setText("")
417
- self.ger.setText("")
418
- self.ger_cv.setText(QCoreApplication.translate("InfoCalVi", 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("InfoCalVi", 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("InfoCalVi", u"Authors", None))
421
- self.list_ref.setText(QCoreApplication.translate("InfoCalVi", u"<html><head/><body><p align=\"justify\"><span style=\" font-size:11pt;\">Please cite the following works if you are intended to use CalVi for your purposes: <br/><br/></span><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;\">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;\">Paol"
422
- "illo, 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;\">. <br/></span></p><p><span style=\" font-size:11pt;\">If you use PaIRS also acknowledge the following works: </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.1"
423
- "007/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;. </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 st"
424
- "yle=\" 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:11pt;\"> 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;\">Asta"
425
- "rita, 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></body></html>", None))
426
- self.tabWidget.setTabText(self.tabWidget.indexOf(self.references), QCoreApplication.translate("InfoCalVi", u"References", None))
427
- # retranslateUi
428
-
@@ -1,19 +0,0 @@
1
- Copyright 2022 Gerardo Paolilo and Tommaso Astarita <PaIRS@gmail.com>
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining a copy of
4
- this software and associated documentation files (the "Software"), to deal in
5
- the Software without restriction, including without limitation the rights to
6
- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
7
- of the Software, and to permit persons to whom the Software is furnished to do
8
- so, subject to the following conditions:
9
-
10
- The above copyright notice and this permission notice shall be included in all
11
- copies or substantial portions of the Software.
12
-
13
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
- SOFTWARE.