mocap-desktop-gui 0.20.7__py3-none-any.whl → 0.21.4__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 (60) hide show
  1. mocap_desktop_gui/__init__.py +3 -3
  2. mocap_desktop_gui/axengine_1737984565_1010362681.py +246 -0
  3. mocap_desktop_gui/gen/__init__.py +3 -3
  4. mocap_desktop_gui/gen/rc_icons.py +3 -3
  5. mocap_desktop_gui/gen/rc_qml.py +3 -3
  6. mocap_desktop_gui/gen/rc_style.py +3 -3
  7. mocap_desktop_gui/main.py +3 -3
  8. mocap_desktop_gui/mc/__init__.py +3 -3
  9. mocap_desktop_gui/mc/bld_fbx_2_glb.py +3 -3
  10. mocap_desktop_gui/mc/bld_utils.py +3 -3
  11. mocap_desktop_gui/mc/camera_models.py +3 -3
  12. mocap_desktop_gui/mc/mc_actor_profile.py +3 -3
  13. mocap_desktop_gui/mc/mc_actor_profile_model.py +3 -3
  14. mocap_desktop_gui/mc/mc_app_manager.py +3 -3
  15. mocap_desktop_gui/mc/mc_auth_core.py +3 -3
  16. mocap_desktop_gui/mc/mc_auth_service.py +3 -3
  17. mocap_desktop_gui/mc/mc_calib.py +3 -3
  18. mocap_desktop_gui/mc/mc_camera_views_model.py +3 -3
  19. mocap_desktop_gui/mc/mc_cloud_service.py +3 -3
  20. mocap_desktop_gui/mc/mc_common_paths.py +3 -3
  21. mocap_desktop_gui/mc/mc_context.py +3 -3
  22. mocap_desktop_gui/mc/mc_diagnosis.py +3 -3
  23. mocap_desktop_gui/mc/mc_file_util.py +3 -3
  24. mocap_desktop_gui/mc/mc_import_folder.py +3 -3
  25. mocap_desktop_gui/mc/mc_project.py +3 -3
  26. mocap_desktop_gui/mc/mc_project_manager.py +3 -3
  27. mocap_desktop_gui/mc/mc_scene_3d_service.py +3 -3
  28. mocap_desktop_gui/mc/mc_sync_media_player.py +3 -3
  29. mocap_desktop_gui/mc/mc_sync_video_decoder_service.py +3 -3
  30. mocap_desktop_gui/mc/mc_sync_video_paint_item.py +3 -3
  31. mocap_desktop_gui/mc/mc_take.py +3 -3
  32. mocap_desktop_gui/mc/mc_take_cloud_job.py +3 -3
  33. mocap_desktop_gui/mc/mc_take_cloud_job_action.py +3 -3
  34. mocap_desktop_gui/mc/mc_take_cloud_job_calib.py +3 -3
  35. mocap_desktop_gui/mc/mc_take_list_model.py +3 -3
  36. mocap_desktop_gui/mc/mc_take_local_job.py +3 -3
  37. mocap_desktop_gui/mc/mc_take_local_job_service.py +3 -3
  38. mocap_desktop_gui/mc/mc_take_run_common.py +3 -3
  39. mocap_desktop_gui/mc/mc_take_run_data_prep.py +3 -3
  40. mocap_desktop_gui/mc/mc_take_run_settings.py +3 -3
  41. mocap_desktop_gui/mc/mc_take_runs_cloud_manager.py +3 -3
  42. mocap_desktop_gui/mc/mc_take_runs_local_manager.py +3 -3
  43. mocap_desktop_gui/mc/mc_take_runs_manager.py +3 -3
  44. mocap_desktop_gui/mc/mc_take_settings.py +3 -3
  45. mocap_desktop_gui/mc/mc_take_video_model.py +3 -3
  46. mocap_desktop_gui/mc/mc_task_trt_engine_gen.py +3 -3
  47. mocap_desktop_gui/mc/mc_video.py +3 -3
  48. mocap_desktop_gui/mc/mc_video_manager.py +3 -3
  49. mocap_desktop_gui/mc/mc_video_uploader.py +3 -3
  50. mocap_desktop_gui/mc/mc_videos_uploader.py +3 -3
  51. mocap_desktop_gui/mc/mc_worker.py +3 -3
  52. mocap_desktop_gui/mc/qml_engine.py +3 -3
  53. mocap_desktop_gui/mc/util.py +3 -3
  54. mocap_desktop_gui/sample.py +3 -3
  55. {mocap_desktop_gui-0.20.7.dist-info → mocap_desktop_gui-0.21.4.dist-info}/METADATA +5 -3
  56. mocap_desktop_gui-0.21.4.dist-info/RECORD +69 -0
  57. mocap_desktop_gui/axengine_1737646074_1010362681.py +0 -246
  58. mocap_desktop_gui-0.20.7.dist-info/RECORD +0 -69
  59. {mocap_desktop_gui-0.20.7.dist-info → mocap_desktop_gui-0.21.4.dist-info}/WHEEL +0 -0
  60. {mocap_desktop_gui-0.20.7.dist-info → mocap_desktop_gui-0.21.4.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_1737646074_1010362681.py')):
5
+ 'axengine_1737984565_1010362681.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_1737646074_1010362681 as _axengine
12
+ import axengine_1737984565_1010362681 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_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1737984565_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(368, 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_1737646074_1010362681.py')):
5
+ 'axengine_1737984565_1010362681.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_1737646074_1010362681 as _axengine
12
+ import axengine_1737984565_1010362681 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_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1737984565_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(734, 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_1737646074_1010362681.py')):
5
+ 'axengine_1737984565_1010362681.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_1737646074_1010362681 as _axengine
12
+ import axengine_1737984565_1010362681 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_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1737984565_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(348, 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_1737646074_1010362681.py')):
5
+ 'axengine_1737984565_1010362681.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_1737646074_1010362681 as _axengine
12
+ import axengine_1737984565_1010362681 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_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1737984565_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(482, 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_1737646074_1010362681.py')):
5
+ 'axengine_1737984565_1010362681.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_1737646074_1010362681 as _axengine
12
+ import axengine_1737984565_1010362681 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_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1737984565_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(77, 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_1737646074_1010362681.py')):
5
+ 'axengine_1737984565_1010362681.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_1737646074_1010362681 as _axengine
12
+ import axengine_1737984565_1010362681 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_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1737984565_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(190, 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_1737646074_1010362681.py')):
5
+ 'axengine_1737984565_1010362681.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_1737646074_1010362681 as _axengine
12
+ import axengine_1737984565_1010362681 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_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1737984565_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(358, 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_1737646074_1010362681.py')):
5
+ 'axengine_1737984565_1010362681.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_1737646074_1010362681 as _axengine
12
+ import axengine_1737984565_1010362681 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_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1737984565_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(705, 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_1737646074_1010362681.py')):
5
+ 'axengine_1737984565_1010362681.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_1737646074_1010362681 as _axengine
12
+ import axengine_1737984565_1010362681 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_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1737984565_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(287, 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_1737646074_1010362681.py')):
5
+ 'axengine_1737984565_1010362681.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_1737646074_1010362681 as _axengine
12
+ import axengine_1737984565_1010362681 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_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1737984565_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(426, 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_1737646074_1010362681.py')):
5
+ 'axengine_1737984565_1010362681.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_1737646074_1010362681 as _axengine
12
+ import axengine_1737984565_1010362681 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_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1737984565_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(386, 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_1737646074_1010362681.py')):
5
+ 'axengine_1737984565_1010362681.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_1737646074_1010362681 as _axengine
12
+ import axengine_1737984565_1010362681 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_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1737984565_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(403, 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_1737646074_1010362681.py')):
5
+ 'axengine_1737984565_1010362681.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_1737646074_1010362681 as _axengine
12
+ import axengine_1737984565_1010362681 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_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1737984565_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(65, 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_1737646074_1010362681.py')):
5
+ 'axengine_1737984565_1010362681.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_1737646074_1010362681 as _axengine
12
+ import axengine_1737984565_1010362681 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_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1737984565_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(114, 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_1737646074_1010362681.py')):
5
+ 'axengine_1737984565_1010362681.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_1737646074_1010362681 as _axengine
12
+ import axengine_1737984565_1010362681 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_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1737984565_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(105, 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_1737646074_1010362681.py')):
5
+ 'axengine_1737984565_1010362681.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_1737646074_1010362681 as _axengine
12
+ import axengine_1737984565_1010362681 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_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1737984565_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(281, 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_1737646074_1010362681.py')):
5
+ 'axengine_1737984565_1010362681.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_1737646074_1010362681 as _axengine
12
+ import axengine_1737984565_1010362681 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_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1737984565_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(794, 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_1737646074_1010362681.py')):
5
+ 'axengine_1737984565_1010362681.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_1737646074_1010362681 as _axengine
12
+ import axengine_1737984565_1010362681 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_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1737984565_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(642, 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_1737646074_1010362681.py')):
5
+ 'axengine_1737984565_1010362681.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_1737646074_1010362681 as _axengine
12
+ import axengine_1737984565_1010362681 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_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1737984565_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(230, 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_1737646074_1010362681.py')):
5
+ 'axengine_1737984565_1010362681.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_1737646074_1010362681 as _axengine
12
+ import axengine_1737984565_1010362681 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_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1737984565_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(472, 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_1737646074_1010362681.py')):
5
+ 'axengine_1737984565_1010362681.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_1737646074_1010362681 as _axengine
12
+ import axengine_1737984565_1010362681 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_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1737984565_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(351, 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_1737646074_1010362681.py')):
5
+ 'axengine_1737984565_1010362681.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_1737646074_1010362681 as _axengine
12
+ import axengine_1737984565_1010362681 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_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1737984565_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(216, 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_1737646074_1010362681.py')):
5
+ 'axengine_1737984565_1010362681.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_1737646074_1010362681 as _axengine
12
+ import axengine_1737984565_1010362681 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_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1737984565_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(799, globals())
@@ -1,12 +1,14 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mocap-desktop-gui
3
- Version: 0.20.7
3
+ Version: 0.21.4
4
4
  Summary:
5
5
  Author: Move.ai
6
- Requires-Python: >=3.10.0,<3.11.dev0
6
+ Requires-Python: >=3.10,<3.14
7
7
  Classifier: Programming Language :: Python :: 3
8
8
  Classifier: Programming Language :: Python :: 3.10
9
- Requires-Dist: PySide6 (>=6.7.2)
9
+ Classifier: Programming Language :: Python :: 3.11
10
+ Classifier: Programming Language :: Python :: 3.12
11
+ Requires-Dist: PySide6 (==6.8.1)
10
12
  Requires-Dist: auth0-python (>=4.7.2,<5.0.0)
11
13
  Requires-Dist: move-ugc-python (>=1.4.1,<2.0.0)
12
14
  Requires-Dist: numba (>=0.60.0,<0.61.0)
@@ -0,0 +1,69 @@
1
+ mocap_desktop_gui/__init__.py,sha256=uECkeCtWZMdaoGOHfUePTpiO389drvTfdPOR40YhQF8,726
2
+ mocap_desktop_gui/axengine_1737984565_1010362681.py,sha256=-xbsqxtOnwG1pHBvSoxN3zUaSl1yP6DwU-vHNtvJgus,519918
3
+ mocap_desktop_gui/gen/__init__.py,sha256=XJaq4NP35MUltM_83t4K7z--_fHgJe--WNBdL1DuITw,726
4
+ mocap_desktop_gui/gen/rc_icons.py,sha256=nckpCtL5eBGJe4UTiGNfL8YfE8jyjgHfOfUMPmlHkow,726
5
+ mocap_desktop_gui/gen/rc_qml.py,sha256=DV6YGJWtwmNsikQBGSqbC86VVtElZND6-snDj1lVlzA,726
6
+ mocap_desktop_gui/gen/rc_style.py,sha256=07L670RUL7SNhO_fIH1ApIrwCptCp4YADpXUy9gYm_Q,726
7
+ mocap_desktop_gui/main.py,sha256=aThwk8gpb12Z13mQyZIyLmlXNJgVclO7zKqCzOxaCqo,726
8
+ mocap_desktop_gui/mc/__init__.py,sha256=6XNqh2YwGsFFbuRd02i25Ti8ssEjI8WNMvq8hWLl7ko,726
9
+ mocap_desktop_gui/mc/bld_fbx_2_glb.py,sha256=FrEth8jk97-FKYH8U2rBRcGrmcQKjPYygd047UzU9iI,725
10
+ mocap_desktop_gui/mc/bld_utils.py,sha256=zo5XnTItQS8wTSo6CleLFLzg7tvfBxd-_P1zLzu8l6w,726
11
+ mocap_desktop_gui/mc/camera_models.py,sha256=2ZLVCN0XO4QQLQiZG4dyZPyrXLdMj1_1wv6RCUnPmAA,726
12
+ mocap_desktop_gui/mc/mc_actor_profile.py,sha256=1mK29cAVLnNWTLF1reQsPlYadl1uTK9LRxcvmgVJaag,726
13
+ mocap_desktop_gui/mc/mc_actor_profile_model.py,sha256=lrgu3KX3q90FD5lEgyNXJBFcatmR9u3jI3DmDcqvWKE,726
14
+ mocap_desktop_gui/mc/mc_app_manager.py,sha256=YA89DhW2_D-2V3u9WhCdD2Sfsi785HwhHK-xviOThXo,726
15
+ mocap_desktop_gui/mc/mc_auth_core.py,sha256=U8J0pCzBG4jxGj1S_v3IUUjH_1lsJn8R7oh_Bo5GVSg,726
16
+ mocap_desktop_gui/mc/mc_auth_service.py,sha256=0w5VQemLz90-AdZwkKYWrbZevEwhz_x1CjzQ73yPX8I,726
17
+ mocap_desktop_gui/mc/mc_calib.py,sha256=dS8fwdM2bhCvDkifSZm3h6fuQPo7Dr0cePO4npdy3Tw,726
18
+ mocap_desktop_gui/mc/mc_camera_views_model.py,sha256=FUluUz9hHE98UFX9gqOx5_vKI0Sd675GVb4ngZEzt9Q,726
19
+ mocap_desktop_gui/mc/mc_cloud_service.py,sha256=OphFXSH4JGy-MuCixVvOYoWWNLHAFP9bks-uF9uUYuE,726
20
+ mocap_desktop_gui/mc/mc_common_paths.py,sha256=rltrwwq_SYQ4FZc9zY8jCPyOodS0IWpTL9W0juVDSSA,725
21
+ mocap_desktop_gui/mc/mc_context.py,sha256=OIL5sR109MV9pu2lLUkxIoNoPRqwNU5DyYBwgmL_lpM,726
22
+ mocap_desktop_gui/mc/mc_diagnosis.py,sha256=sG2VIuavz9Tc7p28LBGav3VSYjouLhYyAIFOGezozR4,726
23
+ mocap_desktop_gui/mc/mc_file_util.py,sha256=jjOZ6S_n1mG-px7F_L3ei9tcj3nrQE1wFPZ_1VLGpXw,726
24
+ mocap_desktop_gui/mc/mc_import_folder.py,sha256=4JPA6q6j6COf1RT2_B-sTVMXAbI-UIxmXIco158ktdk,726
25
+ mocap_desktop_gui/mc/mc_project.py,sha256=ym-t09T7lZzVP7hkSl0wBrHD2601chTFX8IaGwW5jOE,726
26
+ mocap_desktop_gui/mc/mc_project_manager.py,sha256=-9dpCS2Ip1n3_Q1OyOeNfl6P0M7j8m9wn3yxSNQRv68,726
27
+ mocap_desktop_gui/mc/mc_scene_3d_service.py,sha256=7mZ5OvySSKWEynoqFriQWIJU8tFaFI1PTf1gryY8pMw,724
28
+ mocap_desktop_gui/mc/mc_sync_media_player.py,sha256=SajFVKVQYcjP3CkShbtylIy2dBPs6gJ175C12n-Sfmo,726
29
+ mocap_desktop_gui/mc/mc_sync_video_decoder_service.py,sha256=9GWTq8hHMd5CkaSYXgChrI1e6TuD6KpjsTchHLGG_Ts,726
30
+ mocap_desktop_gui/mc/mc_sync_video_paint_item.py,sha256=xIT_a0byccNy554WUXX5iAgfOVBteR5G6eckwwxYn2k,726
31
+ mocap_desktop_gui/mc/mc_take.py,sha256=592AZakjtpBOF54L5tzNTBoa8yssRNnzE3TohyEyfVE,726
32
+ mocap_desktop_gui/mc/mc_take_cloud_job.py,sha256=qQndtOM2Qo6oFhIvrEJAv3t1C73_sCZKfvpj3uKbZXY,726
33
+ mocap_desktop_gui/mc/mc_take_cloud_job_action.py,sha256=KUh7l44ydoaQJUTXDWfQgYCK2n14panrszyrpjTqMRU,726
34
+ mocap_desktop_gui/mc/mc_take_cloud_job_calib.py,sha256=X30qrhQ3Zs9OkBEg8qYbKTLQ7XcmOgbWxMTmALwBBBM,726
35
+ mocap_desktop_gui/mc/mc_take_list_model.py,sha256=P0Nl1yf-A3RfjJI-1YHUU-sLoQRoq8VTyhBv-1iAuKQ,726
36
+ mocap_desktop_gui/mc/mc_take_local_job.py,sha256=ML_RKfExF2HLAT6wiFLnW1ozcI83XBEHIBEBYVrGPzg,725
37
+ mocap_desktop_gui/mc/mc_take_local_job_service.py,sha256=dTF2QbyPrFtRy4PRYwGNxkzFk6Vl9oRf_R0uQtUKcrs,726
38
+ mocap_desktop_gui/mc/mc_take_run_common.py,sha256=DSkPNBBxMpFTtOVAUPWFr7_4aC1Vkk1b3SBM-zwi9FA,726
39
+ mocap_desktop_gui/mc/mc_take_run_data_prep.py,sha256=KbL95JiUBU1uALoMrDbn31oMfi24w-BLpJ2wJ3rPNSc,726
40
+ mocap_desktop_gui/mc/mc_take_run_settings.py,sha256=_sTpu5Krc6OFTKkZQ2zKwf22CwsHlXsHApqbXHT8nXM,726
41
+ mocap_desktop_gui/mc/mc_take_runs_cloud_manager.py,sha256=pMMke4tGc3x8w3a-BFkitMu2RGZzWTaE0VWBZATzoNA,726
42
+ mocap_desktop_gui/mc/mc_take_runs_local_manager.py,sha256=7Bu6BoSGuQ-wFREi7T_ajp08thfXxBBHpcPQOChK4KA,726
43
+ mocap_desktop_gui/mc/mc_take_runs_manager.py,sha256=c9ZJ7N2ln0Xd1c2dWl8uqmziQSsifBh5k6MdXOoPX4o,726
44
+ mocap_desktop_gui/mc/mc_take_settings.py,sha256=9PYwXO2FViJjjefyDTCQi0sFR9L6Bv6b9zYB7vHMJIE,725
45
+ mocap_desktop_gui/mc/mc_take_video_model.py,sha256=uHvnwMlCoNq8YMUoXu1Wu2Rj7JKUZ9cSJxQ6DseqbnU,726
46
+ mocap_desktop_gui/mc/mc_task_trt_engine_gen.py,sha256=ia6t77S6X7UtIDCRNC4DzV4c8MPrW4d6tcam5izDPmw,726
47
+ mocap_desktop_gui/mc/mc_video.py,sha256=v7H6KVpjRutXCbjGiGrI5XoULCvejL-I2dozaWpqUZ8,726
48
+ mocap_desktop_gui/mc/mc_video_manager.py,sha256=ntzdn5d8nl5FJtD7wSKlA8zi8sJLdDxEuhH9HL4X3SA,726
49
+ mocap_desktop_gui/mc/mc_video_uploader.py,sha256=8x1ZZHEDzJ7N53Jlh_8iQi6FfRHJKiUQ6sIjJklfzWg,726
50
+ mocap_desktop_gui/mc/mc_videos_uploader.py,sha256=VzcyB4nWDFEllAranDKKI6bf7p5OFEJMCqIT2qytZPM,726
51
+ mocap_desktop_gui/mc/mc_worker.py,sha256=0TFgsWM-RYBXAv68vuOygYLIlmsRa2LxHGlvt9joMYU,726
52
+ mocap_desktop_gui/mc/qml_engine.py,sha256=sSG6D6H00ygLxkZGIkXAaUdq74Oj8OERAcfDYAnKcFI,726
53
+ mocap_desktop_gui/mc/rig/Move_Mo.blend,sha256=rNN1yapGy_ok0rd5BFO7ldkTcNeeROnIrmKa2COA_Ic,29633272
54
+ mocap_desktop_gui/mc/rig/mapping_body.csv,sha256=CaJ9SLWvXNFU44ft-VI9Br4US2hmdLoMh8w8KnXvHHg,551
55
+ mocap_desktop_gui/mc/rig/mapping_fingers.csv,sha256=cy1EX5aJTRjE3dQLe9YsdrGUsxGqPjYupb99fMw_k18,1030
56
+ mocap_desktop_gui/mc/rig/sdc_rig.zip,sha256=hYCBzYFZKuSr15Xs0nql-iD6aLpuTzy-_5o2CyZjiJE,9022411
57
+ mocap_desktop_gui/mc/scene/scene_3d.blend.5a95cd45,sha256=YBmgAeDqATPeJfra3WrblJ3qpn8QfPtbh4W5Elvn0bM,31290788
58
+ mocap_desktop_gui/mc/settings/camera_models.yaml,sha256=cokr4yWMbTTw2X0ObvBIM_j9HWqgBa4QHqSDlF_XpSo,3320
59
+ mocap_desktop_gui/mc/settings/pipeline_log_settings.yaml,sha256=LRUryWBeAI_1ZlU428F2Wqqd_IUWvB2CFv5X0ilBpQM,1622
60
+ mocap_desktop_gui/mc/settings/settings_action.yaml,sha256=OYd76rzwMwefaFsqPCpsCGbI8CghSDCdNnyinsSt6Gg,18193
61
+ mocap_desktop_gui/mc/settings/settings_extrinsic.yaml,sha256=vDTZqkq8n6XfocRjJlolEj0W5sKuC5CpZvLc4KEnkFU,6483
62
+ mocap_desktop_gui/mc/settings/trt_gen_lite.ini,sha256=QavcRCmwmXTeOlO05LWVPjcVg2cZBwJ_A-dnOajyTy8,688
63
+ mocap_desktop_gui/mc/util.py,sha256=3o28EvAuhaCzuNscXJvDmx3vHMoLWgNjUzHubkT6Q6Y,726
64
+ mocap_desktop_gui/sample.py,sha256=UBeVr9wRb0RhsmByNMfoV26X-cJ-JjEpZ1fZ1PJbDqQ,726
65
+ mocap_desktop_gui/settings.ini,sha256=5zvMETGa_QWHnRN8eplSc-7_owS-7Ww03Gt_Qx1xBQA,8
66
+ mocap_desktop_gui-0.21.4.dist-info/METADATA,sha256=tBx3r3EMzUlqEcoOo_hxbzvxpphEJR2ZRl-a4wKxaL8,1024
67
+ mocap_desktop_gui-0.21.4.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
68
+ mocap_desktop_gui-0.21.4.dist-info/entry_points.txt,sha256=CO37HQGXaM-H3mgUqsTWFln5hHy3SGvrVNcxny6y3So,60
69
+ mocap_desktop_gui-0.21.4.dist-info/RECORD,,