PaIRS-UniNa 0.2.4__cp311-cp311-macosx_10_9_universal2.whl → 0.2.6__cp311-cp311-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.
Potentially problematic release.
This version of PaIRS-UniNa might be problematic. Click here for more details.
- PaIRS_UniNa/Changes.txt +35 -0
- PaIRS_UniNa/Custom_Top.py +1 -1
- PaIRS_UniNa/Explorer.py +3063 -3049
- PaIRS_UniNa/FolderLoop.py +371 -371
- PaIRS_UniNa/Input_Tab.py +717 -709
- PaIRS_UniNa/Input_Tab_CalVi.py +4 -4
- PaIRS_UniNa/Input_Tab_tools.py +3018 -3009
- PaIRS_UniNa/Output_Tab.py +2 -2
- PaIRS_UniNa/PaIRS.py +17 -17
- PaIRS_UniNa/PaIRS_PIV.py +56 -1
- PaIRS_UniNa/PaIRS_pypacks.py +323 -60
- PaIRS_UniNa/Process_Tab.py +8 -13
- PaIRS_UniNa/Process_Tab_Disp.py +9 -4
- PaIRS_UniNa/Saving_tools.py +277 -277
- PaIRS_UniNa/TabTools.py +63 -21
- PaIRS_UniNa/Vis_Tab.py +293 -115
- PaIRS_UniNa/Whatsnew.py +13 -0
- PaIRS_UniNa/_PaIRS_PIV.so +0 -0
- PaIRS_UniNa/__init__.py +3 -3
- PaIRS_UniNa/gPaIRS.py +3825 -3600
- PaIRS_UniNa/icons/flaticon_PaIRS_download_warning.png +0 -0
- PaIRS_UniNa/icons/pylog.png +0 -0
- PaIRS_UniNa/icons/python_warning.png +0 -0
- PaIRS_UniNa/icons/queue.png +0 -0
- PaIRS_UniNa/icons/uninitialized.png +0 -0
- PaIRS_UniNa/icons/window.png +0 -0
- PaIRS_UniNa/listLib.py +301 -301
- PaIRS_UniNa/parForMulti.py +433 -433
- PaIRS_UniNa/parForWorkers.py +46 -1
- PaIRS_UniNa/pivParFor.py +1 -1
- PaIRS_UniNa/procTools.py +17 -7
- PaIRS_UniNa/rqrdpckgs.txt +9 -0
- PaIRS_UniNa/stereo.py +683 -683
- PaIRS_UniNa/stereoPivParFor.py +1 -1
- PaIRS_UniNa/tabSplitter.py +606 -606
- PaIRS_UniNa/ui_Calibration_Tab.py +542 -542
- PaIRS_UniNa/ui_Custom_Top.py +294 -294
- PaIRS_UniNa/ui_Input_Tab.py +1098 -1098
- PaIRS_UniNa/ui_Input_Tab_CalVi.py +1280 -1280
- PaIRS_UniNa/ui_Log_Tab.py +261 -261
- PaIRS_UniNa/ui_Output_Tab.py +2360 -2360
- PaIRS_UniNa/ui_Process_Tab.py +3808 -3808
- PaIRS_UniNa/ui_Process_Tab_CalVi.py +1547 -1547
- PaIRS_UniNa/ui_Process_Tab_Disp.py +1139 -968
- PaIRS_UniNa/ui_Process_Tab_Min.py +435 -435
- PaIRS_UniNa/ui_ResizePopup.py +203 -203
- PaIRS_UniNa/ui_Vis_Tab.py +1626 -1533
- PaIRS_UniNa/ui_Vis_Tab_CalVi.py +1249 -1249
- PaIRS_UniNa/ui_Whatsnew.py +131 -131
- PaIRS_UniNa/ui_gPairs.py +873 -849
- PaIRS_UniNa/ui_infoPaIRS.py +550 -428
- PaIRS_UniNa/whatsnew.txt +4 -4
- {PaIRS_UniNa-0.2.4.dist-info → pairs_unina-0.2.6.dist-info}/METADATA +47 -30
- {PaIRS_UniNa-0.2.4.dist-info → pairs_unina-0.2.6.dist-info}/RECORD +56 -54
- {PaIRS_UniNa-0.2.4.dist-info → pairs_unina-0.2.6.dist-info}/WHEEL +1 -1
- PaIRS_UniNa/icons/order.png +0 -0
- PaIRS_UniNa/icons/order_reverse.png +0 -0
- PaIRS_UniNa/icons/run_piv.png +0 -0
- PaIRS_UniNa-0.2.4.dist-info/LICENSE +0 -19
- {PaIRS_UniNa-0.2.4.dist-info → pairs_unina-0.2.6.dist-info}/top_level.txt +0 -0
PaIRS_UniNa/Input_Tab_CalVi.py
CHANGED
|
@@ -311,7 +311,7 @@ class Input_Tab_CalVi(gPaIRS_Tab):
|
|
|
311
311
|
|
|
312
312
|
def line_edit_cameras_action(self):
|
|
313
313
|
text=self.ui.line_edit_cameras.text()
|
|
314
|
-
split_text=re.findall('(\d+)', text)
|
|
314
|
+
split_text=re.findall(r'(\d+)', text)
|
|
315
315
|
self.INPpar.cams=[]
|
|
316
316
|
for s in split_text:
|
|
317
317
|
i=int(s)
|
|
@@ -365,7 +365,7 @@ class Input_Tab_CalVi(gPaIRS_Tab):
|
|
|
365
365
|
f=os.path.basename(filename)
|
|
366
366
|
FlagWarn=False
|
|
367
367
|
if self.INPpar.FlagCam:
|
|
368
|
-
fsplitted=re.split('_cam\d+', f)
|
|
368
|
+
fsplitted=re.split(r'_cam\d+', f)
|
|
369
369
|
if len(fsplitted)>1:
|
|
370
370
|
fsplitted.insert(-1,'_cam*')
|
|
371
371
|
f="".join(fsplitted)
|
|
@@ -508,7 +508,7 @@ class Input_Tab_CalVi(gPaIRS_Tab):
|
|
|
508
508
|
if self.INPpar.FlagCam and len(self.INPpar.cams)==0:
|
|
509
509
|
ncam=0
|
|
510
510
|
for f in self.INPpar.filenames:
|
|
511
|
-
pats=re.findall('_cam\d+', f)
|
|
511
|
+
pats=re.findall(r'_cam\d+', f)
|
|
512
512
|
if len(pats):
|
|
513
513
|
ncam=int(pats[-1].replace("_cam",""))
|
|
514
514
|
break
|
|
@@ -534,7 +534,7 @@ class Input_Tab_CalVi(gPaIRS_Tab):
|
|
|
534
534
|
if self.INPpar.FlagCam:
|
|
535
535
|
for k,f in enumerate(self.INPpar.filenames):
|
|
536
536
|
if '_cam*' in f: continue
|
|
537
|
-
fsplitted=re.split('_cam\d+', f)
|
|
537
|
+
fsplitted=re.split(r'_cam\d+', f)
|
|
538
538
|
fsplitted.insert(-1,'_cam*')
|
|
539
539
|
f="".join(fsplitted)
|
|
540
540
|
self.INPpar.filenames[k]=f
|