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.

Files changed (60) hide show
  1. PaIRS_UniNa/Changes.txt +35 -0
  2. PaIRS_UniNa/Custom_Top.py +1 -1
  3. PaIRS_UniNa/Explorer.py +3063 -3049
  4. PaIRS_UniNa/FolderLoop.py +371 -371
  5. PaIRS_UniNa/Input_Tab.py +717 -709
  6. PaIRS_UniNa/Input_Tab_CalVi.py +4 -4
  7. PaIRS_UniNa/Input_Tab_tools.py +3018 -3009
  8. PaIRS_UniNa/Output_Tab.py +2 -2
  9. PaIRS_UniNa/PaIRS.py +17 -17
  10. PaIRS_UniNa/PaIRS_PIV.py +56 -1
  11. PaIRS_UniNa/PaIRS_pypacks.py +323 -60
  12. PaIRS_UniNa/Process_Tab.py +8 -13
  13. PaIRS_UniNa/Process_Tab_Disp.py +9 -4
  14. PaIRS_UniNa/Saving_tools.py +277 -277
  15. PaIRS_UniNa/TabTools.py +63 -21
  16. PaIRS_UniNa/Vis_Tab.py +293 -115
  17. PaIRS_UniNa/Whatsnew.py +13 -0
  18. PaIRS_UniNa/_PaIRS_PIV.so +0 -0
  19. PaIRS_UniNa/__init__.py +3 -3
  20. PaIRS_UniNa/gPaIRS.py +3825 -3600
  21. PaIRS_UniNa/icons/flaticon_PaIRS_download_warning.png +0 -0
  22. PaIRS_UniNa/icons/pylog.png +0 -0
  23. PaIRS_UniNa/icons/python_warning.png +0 -0
  24. PaIRS_UniNa/icons/queue.png +0 -0
  25. PaIRS_UniNa/icons/uninitialized.png +0 -0
  26. PaIRS_UniNa/icons/window.png +0 -0
  27. PaIRS_UniNa/listLib.py +301 -301
  28. PaIRS_UniNa/parForMulti.py +433 -433
  29. PaIRS_UniNa/parForWorkers.py +46 -1
  30. PaIRS_UniNa/pivParFor.py +1 -1
  31. PaIRS_UniNa/procTools.py +17 -7
  32. PaIRS_UniNa/rqrdpckgs.txt +9 -0
  33. PaIRS_UniNa/stereo.py +683 -683
  34. PaIRS_UniNa/stereoPivParFor.py +1 -1
  35. PaIRS_UniNa/tabSplitter.py +606 -606
  36. PaIRS_UniNa/ui_Calibration_Tab.py +542 -542
  37. PaIRS_UniNa/ui_Custom_Top.py +294 -294
  38. PaIRS_UniNa/ui_Input_Tab.py +1098 -1098
  39. PaIRS_UniNa/ui_Input_Tab_CalVi.py +1280 -1280
  40. PaIRS_UniNa/ui_Log_Tab.py +261 -261
  41. PaIRS_UniNa/ui_Output_Tab.py +2360 -2360
  42. PaIRS_UniNa/ui_Process_Tab.py +3808 -3808
  43. PaIRS_UniNa/ui_Process_Tab_CalVi.py +1547 -1547
  44. PaIRS_UniNa/ui_Process_Tab_Disp.py +1139 -968
  45. PaIRS_UniNa/ui_Process_Tab_Min.py +435 -435
  46. PaIRS_UniNa/ui_ResizePopup.py +203 -203
  47. PaIRS_UniNa/ui_Vis_Tab.py +1626 -1533
  48. PaIRS_UniNa/ui_Vis_Tab_CalVi.py +1249 -1249
  49. PaIRS_UniNa/ui_Whatsnew.py +131 -131
  50. PaIRS_UniNa/ui_gPairs.py +873 -849
  51. PaIRS_UniNa/ui_infoPaIRS.py +550 -428
  52. PaIRS_UniNa/whatsnew.txt +4 -4
  53. {PaIRS_UniNa-0.2.4.dist-info → pairs_unina-0.2.6.dist-info}/METADATA +47 -30
  54. {PaIRS_UniNa-0.2.4.dist-info → pairs_unina-0.2.6.dist-info}/RECORD +56 -54
  55. {PaIRS_UniNa-0.2.4.dist-info → pairs_unina-0.2.6.dist-info}/WHEEL +1 -1
  56. PaIRS_UniNa/icons/order.png +0 -0
  57. PaIRS_UniNa/icons/order_reverse.png +0 -0
  58. PaIRS_UniNa/icons/run_piv.png +0 -0
  59. PaIRS_UniNa-0.2.4.dist-info/LICENSE +0 -19
  60. {PaIRS_UniNa-0.2.4.dist-info → pairs_unina-0.2.6.dist-info}/top_level.txt +0 -0
@@ -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