mocap-desktop-gui 0.20.7__py3-none-any.whl → 0.21.2__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (60) hide show
  1. mocap_desktop_gui/__init__.py +3 -3
  2. mocap_desktop_gui/axengine_1737982859_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.2.dist-info}/METADATA +5 -4
  56. mocap_desktop_gui-0.21.2.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.2.dist-info}/WHEEL +0 -0
  60. {mocap_desktop_gui-0.20.7.dist-info → mocap_desktop_gui-0.21.2.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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_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_1737982859_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(799, globals())
@@ -1,12 +1,13 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mocap-desktop-gui
3
- Version: 0.20.7
3
+ Version: 0.21.2
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
- Classifier: Programming Language :: Python :: 3.10
9
- Requires-Dist: PySide6 (>=6.7.2)
8
+ Classifier: Programming Language :: Python :: 3.11
9
+ Classifier: Programming Language :: Python :: 3.12
10
+ Requires-Dist: PySide6 (==6.8.1)
10
11
  Requires-Dist: auth0-python (>=4.7.2,<5.0.0)
11
12
  Requires-Dist: move-ugc-python (>=1.4.1,<2.0.0)
12
13
  Requires-Dist: numba (>=0.60.0,<0.61.0)
@@ -0,0 +1,69 @@
1
+ mocap_desktop_gui/__init__.py,sha256=GxOzJmruwnWmhlYLpMUf1HKpKAUru-BDvHozrHmtK-Q,726
2
+ mocap_desktop_gui/axengine_1737982859_1010362681.py,sha256=fVdUqCgCbtq0CODn7H9pLzDrE5htYWwIXBpSYSYphuc,519923
3
+ mocap_desktop_gui/gen/__init__.py,sha256=akWxzjYYta0MkG0SRchF4HOqCNfPB0QXM3GvZQNfRjI,726
4
+ mocap_desktop_gui/gen/rc_icons.py,sha256=XeC5UZYUFHelXsadbc8gh-5E-zYZEp-f8bXuPnXrK68,726
5
+ mocap_desktop_gui/gen/rc_qml.py,sha256=ete-KFL3tQVI6RVpM0CSNULTi2CyjlYc12kHNAbwFBA,726
6
+ mocap_desktop_gui/gen/rc_style.py,sha256=fSdCY5yvJPNU4OIPg8OgKgVybPSLZmQOSR-1MALutW0,726
7
+ mocap_desktop_gui/main.py,sha256=XxelnVb9ETdr5zuu49J35QaFq4o6sRSDLX3jC4UP2ho,726
8
+ mocap_desktop_gui/mc/__init__.py,sha256=kkDDPLGKau7ulnLTobsq2PjXGnPYB_hwpHJX_CAP26w,726
9
+ mocap_desktop_gui/mc/bld_fbx_2_glb.py,sha256=C7FQ0Zw7Eg9Y1XnZhaDa6Fh4YruZ3Cja-eR44AkC6B0,725
10
+ mocap_desktop_gui/mc/bld_utils.py,sha256=WT4kMmkQX00hYslVylhwsVS1DmDc5lJuCfEYFTTegwQ,726
11
+ mocap_desktop_gui/mc/camera_models.py,sha256=hjHLirsExfBTNi80xuqIa1FYY6OP_dVEj45SRwkMd88,726
12
+ mocap_desktop_gui/mc/mc_actor_profile.py,sha256=zMZHWXTBFUHGQLP6OqjFWhzv6D-SpIzqvB4cNFS-oBM,726
13
+ mocap_desktop_gui/mc/mc_actor_profile_model.py,sha256=bbfmkwtiRLTgJ4az5BQlu62xrRJ6YC7seCTTEogB3G4,726
14
+ mocap_desktop_gui/mc/mc_app_manager.py,sha256=jbmn_k7BS3iklApBMuABfFR8K9j5nGFON1VEFbuCIGM,726
15
+ mocap_desktop_gui/mc/mc_auth_core.py,sha256=wIV88J47NBlvXTBrZC14hIRTvBHU2XjUexmAuOslWmc,726
16
+ mocap_desktop_gui/mc/mc_auth_service.py,sha256=1FW14LObPvz4ajyugD6dXAWp1UO1rOcKqr4d46jObRE,726
17
+ mocap_desktop_gui/mc/mc_calib.py,sha256=i7AWtjyh8UpL2h9l1yo1emYu-9-FFyv_V84qZkeTfUU,726
18
+ mocap_desktop_gui/mc/mc_camera_views_model.py,sha256=rK-f7MYq0kC8I80NDmSkhsxE3b5FGUrJOzNxRZSJXxY,726
19
+ mocap_desktop_gui/mc/mc_cloud_service.py,sha256=s78h5tHiqMpvYz18_wwF-5hBFthPUaeI0pEDxjW7G7w,726
20
+ mocap_desktop_gui/mc/mc_common_paths.py,sha256=0C8ZCT-J965yOBLYF66CPmcNglfQ7JjrlPx7KL-_45o,725
21
+ mocap_desktop_gui/mc/mc_context.py,sha256=pA43C8X8EOHPe5ijSugeKvfvzNsJzcOmxlArFhpzotQ,726
22
+ mocap_desktop_gui/mc/mc_diagnosis.py,sha256=hRx7_MQTUxm-fypWvFOxK6GAgL7oGbioOFM5juvxUA8,726
23
+ mocap_desktop_gui/mc/mc_file_util.py,sha256=IwBR5HfBercxLTWLegkNeqFoAMEsKl6BH89LPA77JKw,726
24
+ mocap_desktop_gui/mc/mc_import_folder.py,sha256=fGKkhH-uEWrshq0SphmNAAzU4kJ2jsCeR9bBBa7_QTA,726
25
+ mocap_desktop_gui/mc/mc_project.py,sha256=tRviUBaMDJcTn-ngE9Kzk-m9vm-tFI0vezj76AXCdJE,726
26
+ mocap_desktop_gui/mc/mc_project_manager.py,sha256=U4CLhDhRmt4-k6HZGAjhbMOXIS3GRsGbK2qAvY65jr4,726
27
+ mocap_desktop_gui/mc/mc_scene_3d_service.py,sha256=UXxexvM-VzsNg4NENuaBtJHTXuExrbHgRoW-4t8J-fQ,724
28
+ mocap_desktop_gui/mc/mc_sync_media_player.py,sha256=Z3F3gn6CVFidyJb1CCG7Bc9GwteXPOh9Pv4zBFqNWDg,726
29
+ mocap_desktop_gui/mc/mc_sync_video_decoder_service.py,sha256=9ftkbYW6t0Qd7iXWT1Kpl2dyTg2CWVC_ksKbxTNrXP0,726
30
+ mocap_desktop_gui/mc/mc_sync_video_paint_item.py,sha256=CgYeJ2TAO9grqaNacwcGHYOJF6lGyWbt-dGviksW8sc,726
31
+ mocap_desktop_gui/mc/mc_take.py,sha256=8z2oi1G6taibiZhY5nkUEtbofte6PG8UsqXS8QzEzEs,726
32
+ mocap_desktop_gui/mc/mc_take_cloud_job.py,sha256=gRyvGSZXCsqoHQZMugrDT9FODirHVTHXODAK8QqE3ZM,726
33
+ mocap_desktop_gui/mc/mc_take_cloud_job_action.py,sha256=yUX4P7KaAv1DhCjbd5ydgfTzpMJlGnxs3YK8ZiElHwk,726
34
+ mocap_desktop_gui/mc/mc_take_cloud_job_calib.py,sha256=ZXcKc7UnKj9xdua8FjATXJTcuKcH-sWpKhLtwrGZap4,726
35
+ mocap_desktop_gui/mc/mc_take_list_model.py,sha256=g8kcwD-3UurMg3bLzQ09vYcNK6ZJvkIO0Wjhx25qdj4,726
36
+ mocap_desktop_gui/mc/mc_take_local_job.py,sha256=Dv51h_RQKDKgR1AGPeDzFRwQ3a8jSyU4qe2o7233QhA,725
37
+ mocap_desktop_gui/mc/mc_take_local_job_service.py,sha256=-p2MVleIwZIAiDYCQwEhs2kr2q7HSY6uRF2um-_2Mfg,726
38
+ mocap_desktop_gui/mc/mc_take_run_common.py,sha256=kUOZ7bxFY_hDEmxsdyYCv66xYi25VcdFWtnOVVU7-iY,726
39
+ mocap_desktop_gui/mc/mc_take_run_data_prep.py,sha256=RTU20t3AyyUEL2EZXCC96qLxv96mL2Nns6t9rLh5Y-I,726
40
+ mocap_desktop_gui/mc/mc_take_run_settings.py,sha256=Bhp_DNrrZgAafQS_eZ8XdytpxD78mhIuhukEXaDKgIQ,726
41
+ mocap_desktop_gui/mc/mc_take_runs_cloud_manager.py,sha256=brPxgGU-CK9eMMoPKBzZqR2ZOcN9fiphAqrHssUxIDY,726
42
+ mocap_desktop_gui/mc/mc_take_runs_local_manager.py,sha256=-zCuynvY27uivFKRXm24ZKj21C7QLolEJ_dyszTyik8,726
43
+ mocap_desktop_gui/mc/mc_take_runs_manager.py,sha256=noQnbsEuX7i9aV1VzBVdj4TYZtn6DEQ3uRCn5EFmsFU,726
44
+ mocap_desktop_gui/mc/mc_take_settings.py,sha256=RUiACp027NsXqz7ZvkCRkQbmfIn7raOFBqVX-VeCHrw,725
45
+ mocap_desktop_gui/mc/mc_take_video_model.py,sha256=moqZ4GDKzarvj8lumfXpbj4AOwvOxOQ4SNy_6dbYhkQ,726
46
+ mocap_desktop_gui/mc/mc_task_trt_engine_gen.py,sha256=VQJv-cb2wIItmcRvRfS98P13KTdOecgjNbiTJItkBms,726
47
+ mocap_desktop_gui/mc/mc_video.py,sha256=2G8O6zui7fuoHW6uGOofQCrM0cpo04L8yz8Zr2JbtyU,726
48
+ mocap_desktop_gui/mc/mc_video_manager.py,sha256=QegNrCJxbV-8jSRoCTX7JtuJR6cbDfJcy9VBxUCU0lo,726
49
+ mocap_desktop_gui/mc/mc_video_uploader.py,sha256=UJHCeeVfeGySH3GYZhRJ3lC952RZjIFQkud-cARpehM,726
50
+ mocap_desktop_gui/mc/mc_videos_uploader.py,sha256=ks7L75qLkcvTPKg28m7wJzCq5yvQmw8CEpP7vDQE9r8,726
51
+ mocap_desktop_gui/mc/mc_worker.py,sha256=JVhUulUV4UBOsPsPc9W0pzyArMmoqs22vDvrWO92_BI,726
52
+ mocap_desktop_gui/mc/qml_engine.py,sha256=H-VNSScHPEL3u2SA9y9oiT9YKVCP0AcfP3qlJ_yHRE0,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=NUetq6wOVf9gS4o9GR6G2Z9SoEja8k--_bmx76gEk78,726
64
+ mocap_desktop_gui/sample.py,sha256=rU65ul4AicdcUxnnTjfejFpX2VtHuztIIaAoZKnp7CQ,726
65
+ mocap_desktop_gui/settings.ini,sha256=5zvMETGa_QWHnRN8eplSc-7_owS-7Ww03Gt_Qx1xBQA,8
66
+ mocap_desktop_gui-0.21.2.dist-info/METADATA,sha256=ATHJn8_48k-2bSPW87WteGiSgaRssf3dkA7p8a7GA8g,972
67
+ mocap_desktop_gui-0.21.2.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
68
+ mocap_desktop_gui-0.21.2.dist-info/entry_points.txt,sha256=CO37HQGXaM-H3mgUqsTWFln5hHy3SGvrVNcxny6y3So,60
69
+ mocap_desktop_gui-0.21.2.dist-info/RECORD,,