mocap-desktop-gui 0.18.2__py3-none-any.whl → 0.18.3__py3-none-any.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. mocap_desktop_gui/__init__.py +4 -4
  2. mocap_desktop_gui/axengine_1733743184_3812259908.py +246 -0
  3. mocap_desktop_gui/gen/__init__.py +4 -4
  4. mocap_desktop_gui/gen/rc_icons.py +4 -4
  5. mocap_desktop_gui/gen/rc_qml.py +4 -4
  6. mocap_desktop_gui/gen/rc_style.py +4 -4
  7. mocap_desktop_gui/main.py +3 -3
  8. mocap_desktop_gui/mc/__init__.py +4 -4
  9. mocap_desktop_gui/mc/bld_fbx_2_glb.py +4 -4
  10. mocap_desktop_gui/mc/bld_utils.py +4 -4
  11. mocap_desktop_gui/mc/camera_models.py +4 -4
  12. mocap_desktop_gui/mc/mc_app_manager.py +4 -4
  13. mocap_desktop_gui/mc/mc_auth_core.py +4 -4
  14. mocap_desktop_gui/mc/mc_auth_service.py +4 -4
  15. mocap_desktop_gui/mc/mc_calib.py +4 -4
  16. mocap_desktop_gui/mc/mc_cam_ui_states.py +4 -4
  17. mocap_desktop_gui/mc/mc_cloud_service.py +4 -4
  18. mocap_desktop_gui/mc/mc_common_paths.py +4 -4
  19. mocap_desktop_gui/mc/mc_context.py +4 -4
  20. mocap_desktop_gui/mc/mc_file_util.py +4 -4
  21. mocap_desktop_gui/mc/mc_import_folder.py +4 -4
  22. mocap_desktop_gui/mc/mc_project.py +4 -4
  23. mocap_desktop_gui/mc/mc_project_manager.py +3 -3
  24. mocap_desktop_gui/mc/mc_scene_3d_service.py +4 -4
  25. mocap_desktop_gui/mc/mc_sync_media_player.py +4 -4
  26. mocap_desktop_gui/mc/mc_sync_video_decoder_service.py +4 -4
  27. mocap_desktop_gui/mc/mc_sync_video_paint_item.py +4 -4
  28. mocap_desktop_gui/mc/mc_take.py +4 -4
  29. mocap_desktop_gui/mc/mc_take_cloud_job.py +4 -4
  30. mocap_desktop_gui/mc/mc_take_cloud_job_action.py +4 -4
  31. mocap_desktop_gui/mc/mc_take_cloud_job_calib.py +4 -4
  32. mocap_desktop_gui/mc/mc_take_list_model.py +4 -4
  33. mocap_desktop_gui/mc/mc_take_local_job.py +4 -4
  34. mocap_desktop_gui/mc/mc_take_local_job_service.py +4 -4
  35. mocap_desktop_gui/mc/mc_take_run_common.py +4 -4
  36. mocap_desktop_gui/mc/mc_take_run_data_prep.py +4 -4
  37. mocap_desktop_gui/mc/mc_take_run_settings.py +4 -4
  38. mocap_desktop_gui/mc/mc_take_runs_cloud_manager.py +4 -4
  39. mocap_desktop_gui/mc/mc_take_runs_local_manager.py +4 -4
  40. mocap_desktop_gui/mc/mc_take_runs_manager.py +4 -4
  41. mocap_desktop_gui/mc/mc_take_settings.py +4 -4
  42. mocap_desktop_gui/mc/mc_take_video_model.py +3 -3
  43. mocap_desktop_gui/mc/mc_task_trt_engine_gen.py +4 -4
  44. mocap_desktop_gui/mc/mc_video.py +4 -4
  45. mocap_desktop_gui/mc/mc_video_manager.py +4 -4
  46. mocap_desktop_gui/mc/mc_video_uploader.py +18 -0
  47. mocap_desktop_gui/mc/mc_videos_uploader.py +18 -0
  48. mocap_desktop_gui/mc/mc_worker.py +4 -4
  49. mocap_desktop_gui/mc/qml_engine.py +4 -4
  50. mocap_desktop_gui/mc/util.py +4 -4
  51. mocap_desktop_gui/sample.py +3 -3
  52. {mocap_desktop_gui-0.18.2.dist-info → mocap_desktop_gui-0.18.3.dist-info}/METADATA +1 -1
  53. mocap_desktop_gui-0.18.3.dist-info/RECORD +66 -0
  54. mocap_desktop_gui/axengine_1733134646_1041659107.py +0 -246
  55. mocap_desktop_gui-0.18.2.dist-info/RECORD +0 -64
  56. {mocap_desktop_gui-0.18.2.dist-info → mocap_desktop_gui-0.18.3.dist-info}/WHEEL +0 -0
  57. {mocap_desktop_gui-0.18.2.dist-info → mocap_desktop_gui-0.18.3.dist-info}/entry_points.txt +0 -0
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1733134646_1041659107.py')):
5
+ 'axengine_1733743184_3812259908.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1733134646_1041659107 as _axengine
12
+ import axengine_1733743184_3812259908 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1733134646_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(391, globals())
17
+ from axengine_1733743184_3812259908 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(433, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1733134646_1041659107.py')):
5
+ 'axengine_1733743184_3812259908.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1733134646_1041659107 as _axengine
12
+ import axengine_1733743184_3812259908 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1733134646_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(309, globals())
17
+ from axengine_1733743184_3812259908 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(353, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1733134646_1041659107.py')):
5
+ 'axengine_1733743184_3812259908.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1733134646_1041659107 as _axengine
12
+ import axengine_1733743184_3812259908 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1733134646_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(57, globals())
17
+ from axengine_1733743184_3812259908 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(60, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1733134646_1041659107.py')):
5
+ 'axengine_1733743184_3812259908.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1733134646_1041659107 as _axengine
12
+ import axengine_1733743184_3812259908 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1733134646_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(299, globals())
17
+ from axengine_1733743184_3812259908 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(343, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1733134646_1041659107.py')):
5
+ 'axengine_1733743184_3812259908.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1733134646_1041659107 as _axengine
12
+ import axengine_1733743184_3812259908 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1733134646_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(176, globals())
17
+ from axengine_1733743184_3812259908 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(196, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1733134646_1041659107.py')):
5
+ 'axengine_1733743184_3812259908.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1733134646_1041659107 as _axengine
12
+ import axengine_1733743184_3812259908 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1733134646_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(69, globals())
17
+ from axengine_1733743184_3812259908 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(72, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1733134646_1041659107.py')):
5
+ 'axengine_1733743184_3812259908.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1733134646_1041659107 as _axengine
12
+ import axengine_1733743184_3812259908 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1733134646_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(378, globals())
17
+ from axengine_1733743184_3812259908 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(421, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1733134646_1041659107.py')):
5
+ 'axengine_1733743184_3812259908.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1733134646_1041659107 as _axengine
12
+ import axengine_1733743184_3812259908 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1733134646_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(459, globals())
17
+ from axengine_1733743184_3812259908 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(518, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1733134646_1041659107.py')):
5
+ 'axengine_1733743184_3812259908.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1733134646_1041659107 as _axengine
12
+ import axengine_1733743184_3812259908 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1733134646_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(295, globals())
17
+ from axengine_1733743184_3812259908 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(339, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1733134646_1041659107.py')):
5
+ 'axengine_1733743184_3812259908.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1733134646_1041659107 as _axengine
12
+ import axengine_1733743184_3812259908 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1733134646_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(475, globals())
17
+ from axengine_1733743184_3812259908 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(534, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1733134646_1041659107.py')):
5
+ 'axengine_1733743184_3812259908.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1733134646_1041659107 as _axengine
12
+ import axengine_1733743184_3812259908 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1733134646_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(278, globals())
17
+ from axengine_1733743184_3812259908 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(321, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1733134646_1041659107.py')):
5
+ 'axengine_1733743184_3812259908.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1733134646_1041659107 as _axengine
12
+ import axengine_1733743184_3812259908 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1733134646_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1733743184_3812259908 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(15, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1733134646_1041659107.py')):
5
+ 'axengine_1733743184_3812259908.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1733134646_1041659107 as _axengine
12
+ import axengine_1733743184_3812259908 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1733134646_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(403, globals())
17
+ from axengine_1733743184_3812259908 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(445, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1733134646_1041659107.py')):
5
+ 'axengine_1733743184_3812259908.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1733134646_1041659107 as _axengine
12
+ import axengine_1733743184_3812259908 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1733134646_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(445, globals())
17
+ from axengine_1733743184_3812259908 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(495, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1733134646_1041659107.py')):
5
+ 'axengine_1733743184_3812259908.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1733134646_1041659107 as _axengine
12
+ import axengine_1733743184_3812259908 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1733134646_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(260, globals())
17
+ from axengine_1733743184_3812259908 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(303, globals())
@@ -0,0 +1,18 @@
1
+ import os as _os
2
+ import sys as _sys
3
+ _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
+ while not _os.path.exists(_os.path.join(_axeSearchPath,
5
+ 'axengine_1733743184_3812259908.py')):
6
+ _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
+ if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
+ break
9
+ _axeSearchPath = _newAxeSearchPath
10
+ try:
11
+ _sys.path.append(_axeSearchPath)
12
+ import axengine_1733743184_3812259908 as _axengine
13
+ except Exception as e:
14
+ raise Exception('Failed to load AxEngine!') from e
15
+ finally:
16
+ _sys.path.pop()
17
+ from axengine_1733743184_3812259908 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(600, globals())
@@ -0,0 +1,18 @@
1
+ import os as _os
2
+ import sys as _sys
3
+ _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
+ while not _os.path.exists(_os.path.join(_axeSearchPath,
5
+ 'axengine_1733743184_3812259908.py')):
6
+ _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
+ if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
+ break
9
+ _axeSearchPath = _newAxeSearchPath
10
+ try:
11
+ _sys.path.append(_axeSearchPath)
12
+ import axengine_1733743184_3812259908 as _axengine
13
+ except Exception as e:
14
+ raise Exception('Failed to load AxEngine!') from e
15
+ finally:
16
+ _sys.path.pop()
17
+ from axengine_1733743184_3812259908 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(184, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1733134646_1041659107.py')):
5
+ 'axengine_1733743184_3812259908.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1733134646_1041659107 as _axengine
12
+ import axengine_1733743184_3812259908 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1733134646_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(462, globals())
17
+ from axengine_1733743184_3812259908 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(521, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1733134646_1041659107.py')):
5
+ 'axengine_1733743184_3812259908.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1733134646_1041659107 as _axengine
12
+ import axengine_1733743184_3812259908 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1733134646_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(60, globals())
17
+ from axengine_1733743184_3812259908 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(63, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1733134646_1041659107.py')):
5
+ 'axengine_1733743184_3812259908.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1733134646_1041659107 as _axengine
12
+ import axengine_1733743184_3812259908 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1733134646_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(249, globals())
17
+ from axengine_1733743184_3812259908 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(269, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1733134646_1041659107.py')):
5
+ 'axengine_1733743184_3812259908.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1733134646_1041659107 as _axengine
12
+ import axengine_1733743184_3812259908 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1733134646_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1733743184_3812259908 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(6, globals())
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mocap-desktop-gui
3
- Version: 0.18.2
3
+ Version: 0.18.3
4
4
  Summary:
5
5
  Author: Move.ai
6
6
  Requires-Python: >=3.10,<3.13
@@ -0,0 +1,66 @@
1
+ mocap_desktop_gui/__init__.py,sha256=Y7Dr8LG5WV9aqJWVguPAfX5tHEQIpJH2CwtrBnyDE2Q,726
2
+ mocap_desktop_gui/axengine_1733743184_3812259908.py,sha256=awtoPrRDph8CHXfg3ZgEQr8Aj4WbohoNnBwXmk6akl4,463653
3
+ mocap_desktop_gui/gen/__init__.py,sha256=v866Gd5vOT-HhQ6sK0a7w8sdZi8i4RmwmAG3oATY0sA,726
4
+ mocap_desktop_gui/gen/rc_icons.py,sha256=Ay-g-NsTK7ZjEDwmQDk-3myZ27oZzMFDBJ3ThpKzDAs,726
5
+ mocap_desktop_gui/gen/rc_qml.py,sha256=cgoGAyvGyTZ6P3i2qFLe1DP0vXr57QxgsU4Rt7_5Q68,726
6
+ mocap_desktop_gui/gen/rc_style.py,sha256=scRwbsheRUCDSNHg6xpnwjw_e0hi1hoAGpxvcr1jQwU,726
7
+ mocap_desktop_gui/main.py,sha256=8Lc2aKeHkRCPPLZmaCMydcZCHiK442ylcGg6ITqpcrw,724
8
+ mocap_desktop_gui/mc/__init__.py,sha256=woEZ3Lc805JOFUkxVeB0pUeURLGoSe8Dk3RXaCf_n5o,726
9
+ mocap_desktop_gui/mc/bld_fbx_2_glb.py,sha256=CqWCoZsbN8Qo1hdXuxOiduD9cFARX1CTugI164-q1-0,726
10
+ mocap_desktop_gui/mc/bld_utils.py,sha256=3H7GsK2M3LZHb34uCQDTMADRZzRnMCIejr6wTNrIKEo,726
11
+ mocap_desktop_gui/mc/camera_models.py,sha256=nyY_N51F_as4JgnIGxSuAxDQ6HWhMGnAiR9hAs8vMF0,726
12
+ mocap_desktop_gui/mc/mc_app_manager.py,sha256=eNrj_CFXy4vlFuomrSRfbaDbnuoo_hMJ3opTGLw4G9g,726
13
+ mocap_desktop_gui/mc/mc_auth_core.py,sha256=nubjsmTcLfGOwPKt5E-GrwxrWLQEUEJWFMGPNF3eNYM,726
14
+ mocap_desktop_gui/mc/mc_auth_service.py,sha256=b7KC4J2qDEvyV8zSz4DlIsntQoPcnNpjYwAklb7ZVoY,726
15
+ mocap_desktop_gui/mc/mc_calib.py,sha256=l46_Q3Mv8-ImILNkKxKs6bnDJhZeitlGBy7oyArjnTw,726
16
+ mocap_desktop_gui/mc/mc_cam_ui_states.py,sha256=clKhldPDM1a-GaNAnSXh4WbvXAXf20Epqs3BAL5Na3A,726
17
+ mocap_desktop_gui/mc/mc_cloud_service.py,sha256=LD5JJYD2Ne-6W-1zXLY3om3zcWyutVtjalipcSjwf6I,726
18
+ mocap_desktop_gui/mc/mc_common_paths.py,sha256=yHIGOBYaXu8JDhZwRu51-QiT2jOP6L_UkJ2o_RR_G6Y,726
19
+ mocap_desktop_gui/mc/mc_context.py,sha256=jzNQzkVsRW3ptlhzCmcFRT69N7DPPW2OKMMM7Ff4-1U,726
20
+ mocap_desktop_gui/mc/mc_file_util.py,sha256=nOE_4CIln5LUmm6_MY17VRKExhdDO5JP6JxBW9I3O7Y,726
21
+ mocap_desktop_gui/mc/mc_import_folder.py,sha256=qbqqaTxKW0vEyIp9e5KRCflLqfDUy02cOyhGX2hMlxU,726
22
+ mocap_desktop_gui/mc/mc_project.py,sha256=bM4yqtlhL87ybsqtMfikApQGowfz9gtCTVqPEMB1E58,726
23
+ mocap_desktop_gui/mc/mc_project_manager.py,sha256=VEjLS7Stk0lbq6p6t3RrEAxVQdy_nIvEsR0NOuTye8A,725
24
+ mocap_desktop_gui/mc/mc_scene_3d_service.py,sha256=QfRfApVMK1_5UJTjrobt8mkr-g1D5droKcuGuk2px8g,726
25
+ mocap_desktop_gui/mc/mc_sync_media_player.py,sha256=FzxnkuTCauJZs_cb7nodVt81rYvh5D4DXTkoNbwJruI,726
26
+ mocap_desktop_gui/mc/mc_sync_video_decoder_service.py,sha256=qHda_w05Z6vSlsCiPgr39KsWnzIij1xGSTv3mr1IAmQ,726
27
+ mocap_desktop_gui/mc/mc_sync_video_paint_item.py,sha256=u6DNPVEDx_-2UAynmOIxef54ezRcRxRZ41TmmkBmvhU,726
28
+ mocap_desktop_gui/mc/mc_take.py,sha256=5jNwF4efWSagGnXJ0b5Ihs4mQidNUAcNPBq0bw-8VHA,726
29
+ mocap_desktop_gui/mc/mc_take_cloud_job.py,sha256=SyyoRzfDbWdZf3XyUXukTTakQFTO8RVP4QqH0tWreVg,726
30
+ mocap_desktop_gui/mc/mc_take_cloud_job_action.py,sha256=GM1rXN2BgCwaUYaoRmSznljW9zXgk5Y5ojJ3sSKRuew,726
31
+ mocap_desktop_gui/mc/mc_take_cloud_job_calib.py,sha256=wZYUA5q0dbnLge0uibkCCo0KyNWflzRYUz662YhrlnU,726
32
+ mocap_desktop_gui/mc/mc_take_list_model.py,sha256=D2d0e0bSfTDgYm32U7SxeEC3JeRbZLUcOkhq-Y4zQCw,726
33
+ mocap_desktop_gui/mc/mc_take_local_job.py,sha256=kjJv4mH1XW_PflfXym_jBBjfFwL_ksUkCy6cHTjoWcg,725
34
+ mocap_desktop_gui/mc/mc_take_local_job_service.py,sha256=TNFKVFL9Rg6q0UJA7i3RfHTE7G04Xxq8_Twvz5jyolo,726
35
+ mocap_desktop_gui/mc/mc_take_run_common.py,sha256=piHO3ww5MtYpkWxt6bibhLdiAVlPN9PG2RyFfCiPoXQ,726
36
+ mocap_desktop_gui/mc/mc_take_run_data_prep.py,sha256=CC_e8i8S3bfcLIbSiXwfeagaXkeptSFUFE7y2z-aKbQ,725
37
+ mocap_desktop_gui/mc/mc_take_run_settings.py,sha256=Z0EFFhRnxUfMRgJU1F2ij18ft_3IzlGXrB04-_vtGR0,726
38
+ mocap_desktop_gui/mc/mc_take_runs_cloud_manager.py,sha256=nBT_U9XB0iKD5nWmDRufzMWE8OVC2RuTqpCyCBJWmKM,726
39
+ mocap_desktop_gui/mc/mc_take_runs_local_manager.py,sha256=ZieDe_F9hADQERhqa5JfrdHe5iPoPv7lNaFbWDKWQU4,726
40
+ mocap_desktop_gui/mc/mc_take_runs_manager.py,sha256=QXI4sZBnd-ThBbpNuAGRRNNPnUqPHWkqJ951VGwPhbE,726
41
+ mocap_desktop_gui/mc/mc_take_settings.py,sha256=YaOecWM93uSZDXBkGouYQOLuzKgyHDrxZZnq-T6GV64,726
42
+ mocap_desktop_gui/mc/mc_take_video_model.py,sha256=HkQb5Ek5p1M44RKS5DeahO0CqTMsyv4XF754OKAQ72M,725
43
+ mocap_desktop_gui/mc/mc_task_trt_engine_gen.py,sha256=jjEgKFgfJjjjXJK5OuM_tPsgtojvO47GzGjdv8gEndk,726
44
+ mocap_desktop_gui/mc/mc_video.py,sha256=SsqEep2VWrQL6ANpJ0tz-fLZZKFsDzh1iFR3B4NWaAU,726
45
+ mocap_desktop_gui/mc/mc_video_manager.py,sha256=8M8hTVA2nDXBliK0tuSUCYDzzX6E_VaSdGxaeLwEDXs,726
46
+ mocap_desktop_gui/mc/mc_video_uploader.py,sha256=yUUfso4wxhh62HGku_XgZ_ciET-Dq9fAPjDZfAOtX00,726
47
+ mocap_desktop_gui/mc/mc_videos_uploader.py,sha256=rjxYmaUSmkCiBuep75Nbyb4O9yoWBISnapf1qAhxnhs,726
48
+ mocap_desktop_gui/mc/mc_worker.py,sha256=VuwZeqe03G3fIPaHnRM6kn1UzxD6Rg2CHEOF-dVNDCI,726
49
+ mocap_desktop_gui/mc/qml_engine.py,sha256=cbyWzBs3zeh9m6bI_lXxABdqUFijeD7P4aZes_dH32s,725
50
+ mocap_desktop_gui/mc/rig/Move_Mo.blend,sha256=rNN1yapGy_ok0rd5BFO7ldkTcNeeROnIrmKa2COA_Ic,29633272
51
+ mocap_desktop_gui/mc/rig/mapping_body.csv,sha256=CaJ9SLWvXNFU44ft-VI9Br4US2hmdLoMh8w8KnXvHHg,551
52
+ mocap_desktop_gui/mc/rig/mapping_fingers.csv,sha256=cy1EX5aJTRjE3dQLe9YsdrGUsxGqPjYupb99fMw_k18,1030
53
+ mocap_desktop_gui/mc/rig/sdc_rig.zip,sha256=hYCBzYFZKuSr15Xs0nql-iD6aLpuTzy-_5o2CyZjiJE,9022411
54
+ mocap_desktop_gui/mc/scene/scene_3d.blend.5a95cd45,sha256=YBmgAeDqATPeJfra3WrblJ3qpn8QfPtbh4W5Elvn0bM,31290788
55
+ mocap_desktop_gui/mc/settings/camera_models.yaml,sha256=cokr4yWMbTTw2X0ObvBIM_j9HWqgBa4QHqSDlF_XpSo,3320
56
+ mocap_desktop_gui/mc/settings/pipeline_log_settings.yaml,sha256=LRUryWBeAI_1ZlU428F2Wqqd_IUWvB2CFv5X0ilBpQM,1622
57
+ mocap_desktop_gui/mc/settings/settings_action.yaml,sha256=lLglwbLCQ2Uzx5CyLCPcADZbnJ6Brc1evcAP_XnEPmw,18134
58
+ mocap_desktop_gui/mc/settings/settings_extrinsic.yaml,sha256=vDTZqkq8n6XfocRjJlolEj0W5sKuC5CpZvLc4KEnkFU,6483
59
+ mocap_desktop_gui/mc/settings/trt_gen_lite.ini,sha256=QavcRCmwmXTeOlO05LWVPjcVg2cZBwJ_A-dnOajyTy8,688
60
+ mocap_desktop_gui/mc/util.py,sha256=NTigNnhB3TfJE3s0-WZjq_uzQm-EcCgI7cs4zOzPUCU,726
61
+ mocap_desktop_gui/sample.py,sha256=34AQ83BpCXUr9Mvbqzcd_08Y0mcojIjWWo9GQ-ddZKk,724
62
+ mocap_desktop_gui/settings.ini,sha256=5zvMETGa_QWHnRN8eplSc-7_owS-7Ww03Gt_Qx1xBQA,8
63
+ mocap_desktop_gui-0.18.3.dist-info/METADATA,sha256=vKoWG61vsKYIdZIGMgdanzTE2oZNphd4EKFDhe1bu8k,1024
64
+ mocap_desktop_gui-0.18.3.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
65
+ mocap_desktop_gui-0.18.3.dist-info/entry_points.txt,sha256=xMiDqkrscETVFaPjOzROvqLLQqlaurQKY-U4nPckFog,64
66
+ mocap_desktop_gui-0.18.3.dist-info/RECORD,,