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

Sign up to get free protection for your applications and to get access to all the features.
Files changed (61) hide show
  1. mocap_desktop_gui/__init__.py +4 -4
  2. mocap_desktop_gui/axengine_1737646074_1010362681.py +246 -0
  3. mocap_desktop_gui/gen/__init__.py +4 -4
  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 +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_actor_profile.py +4 -4
  13. mocap_desktop_gui/mc/mc_actor_profile_model.py +4 -4
  14. mocap_desktop_gui/mc/mc_app_manager.py +4 -4
  15. mocap_desktop_gui/mc/mc_auth_core.py +4 -4
  16. mocap_desktop_gui/mc/mc_auth_service.py +4 -4
  17. mocap_desktop_gui/mc/mc_calib.py +4 -4
  18. mocap_desktop_gui/mc/mc_camera_views_model.py +4 -4
  19. mocap_desktop_gui/mc/mc_cloud_service.py +4 -4
  20. mocap_desktop_gui/mc/mc_common_paths.py +4 -4
  21. mocap_desktop_gui/mc/mc_context.py +4 -4
  22. mocap_desktop_gui/mc/mc_diagnosis.py +4 -4
  23. mocap_desktop_gui/mc/mc_file_util.py +4 -4
  24. mocap_desktop_gui/mc/mc_import_folder.py +4 -4
  25. mocap_desktop_gui/mc/mc_project.py +4 -4
  26. mocap_desktop_gui/mc/mc_project_manager.py +4 -4
  27. mocap_desktop_gui/mc/mc_scene_3d_service.py +4 -4
  28. mocap_desktop_gui/mc/mc_sync_media_player.py +4 -4
  29. mocap_desktop_gui/mc/mc_sync_video_decoder_service.py +4 -4
  30. mocap_desktop_gui/mc/mc_sync_video_paint_item.py +4 -4
  31. mocap_desktop_gui/mc/mc_take.py +4 -4
  32. mocap_desktop_gui/mc/mc_take_cloud_job.py +4 -4
  33. mocap_desktop_gui/mc/mc_take_cloud_job_action.py +4 -4
  34. mocap_desktop_gui/mc/mc_take_cloud_job_calib.py +4 -4
  35. mocap_desktop_gui/mc/mc_take_list_model.py +4 -4
  36. mocap_desktop_gui/mc/mc_take_local_job.py +4 -4
  37. mocap_desktop_gui/mc/mc_take_local_job_service.py +4 -4
  38. mocap_desktop_gui/mc/mc_take_run_common.py +4 -4
  39. mocap_desktop_gui/mc/mc_take_run_data_prep.py +4 -4
  40. mocap_desktop_gui/mc/mc_take_run_settings.py +4 -4
  41. mocap_desktop_gui/mc/mc_take_runs_cloud_manager.py +4 -4
  42. mocap_desktop_gui/mc/mc_take_runs_local_manager.py +4 -4
  43. mocap_desktop_gui/mc/mc_take_runs_manager.py +4 -4
  44. mocap_desktop_gui/mc/mc_take_settings.py +4 -4
  45. mocap_desktop_gui/mc/mc_take_video_model.py +4 -4
  46. mocap_desktop_gui/mc/mc_task_trt_engine_gen.py +4 -4
  47. mocap_desktop_gui/mc/mc_video.py +4 -4
  48. mocap_desktop_gui/mc/mc_video_manager.py +4 -4
  49. mocap_desktop_gui/mc/mc_video_uploader.py +4 -4
  50. mocap_desktop_gui/mc/mc_videos_uploader.py +4 -4
  51. mocap_desktop_gui/mc/mc_worker.py +4 -4
  52. mocap_desktop_gui/mc/qml_engine.py +4 -4
  53. mocap_desktop_gui/mc/util.py +4 -4
  54. mocap_desktop_gui/sample.py +4 -4
  55. {mocap_desktop_gui-0.20.6.dist-info → mocap_desktop_gui-0.20.7.dist-info}/METADATA +1 -1
  56. mocap_desktop_gui-0.20.7.dist-info/RECORD +69 -0
  57. mocap_desktop_gui-0.20.7.dist-info/entry_points.txt +3 -0
  58. mocap_desktop_gui/axengine_1737379593_187673042.py +0 -246
  59. mocap_desktop_gui-0.20.6.dist-info/RECORD +0 -69
  60. mocap_desktop_gui-0.20.6.dist-info/entry_points.txt +0 -3
  61. {mocap_desktop_gui-0.20.6.dist-info → mocap_desktop_gui-0.20.7.dist-info}/WHEEL +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_1737379593_187673042.py')):
5
+ 'axengine_1737646074_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_1737379593_187673042 as _axengine
12
+ import axengine_1737646074_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_1737379593_187673042 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(139, globals())
17
+ from axengine_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(554, 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_1737379593_187673042.py')):
5
+ 'axengine_1737646074_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_1737379593_187673042 as _axengine
12
+ import axengine_1737646074_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_1737379593_187673042 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(505, globals())
17
+ from axengine_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
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_1737379593_187673042.py')):
5
+ 'axengine_1737646074_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_1737379593_187673042 as _axengine
12
+ import axengine_1737646074_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_1737379593_187673042 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(474, globals())
17
+ from axengine_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
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_1737379593_187673042.py')):
5
+ 'axengine_1737646074_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_1737379593_187673042 as _axengine
12
+ import axengine_1737646074_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_1737379593_187673042 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(38, globals())
17
+ from axengine_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
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_1737379593_187673042.py')):
5
+ 'axengine_1737646074_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_1737379593_187673042 as _axengine
12
+ import axengine_1737646074_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_1737379593_187673042 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(329, globals())
17
+ from axengine_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
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_1737379593_187673042.py')):
5
+ 'axengine_1737646074_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_1737379593_187673042 as _axengine
12
+ import axengine_1737646074_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_1737379593_187673042 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(14, globals())
17
+ from axengine_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
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_1737379593_187673042.py')):
5
+ 'axengine_1737646074_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_1737379593_187673042 as _axengine
12
+ import axengine_1737646074_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_1737379593_187673042 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(143, globals())
17
+ from axengine_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
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_1737379593_187673042.py')):
5
+ 'axengine_1737646074_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_1737379593_187673042 as _axengine
12
+ import axengine_1737646074_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_1737379593_187673042 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(714, globals())
17
+ from axengine_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
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_1737379593_187673042.py')):
5
+ 'axengine_1737646074_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_1737379593_187673042 as _axengine
12
+ import axengine_1737646074_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_1737379593_187673042 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(24, globals())
17
+ from axengine_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
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_1737379593_187673042.py')):
5
+ 'axengine_1737646074_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_1737379593_187673042 as _axengine
12
+ import axengine_1737646074_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_1737379593_187673042 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(335, globals())
17
+ from axengine_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
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_1737379593_187673042.py')):
5
+ 'axengine_1737646074_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_1737379593_187673042 as _axengine
12
+ import axengine_1737646074_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_1737379593_187673042 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(271, globals())
17
+ from axengine_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
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_1737379593_187673042.py')):
5
+ 'axengine_1737646074_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_1737379593_187673042 as _axengine
12
+ import axengine_1737646074_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_1737379593_187673042 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(201, globals())
17
+ from axengine_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
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_1737379593_187673042.py')):
5
+ 'axengine_1737646074_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_1737379593_187673042 as _axengine
12
+ import axengine_1737646074_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_1737379593_187673042 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(55, globals())
17
+ from axengine_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
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_1737379593_187673042.py')):
5
+ 'axengine_1737646074_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_1737379593_187673042 as _axengine
12
+ import axengine_1737646074_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_1737379593_187673042 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(598, globals())
17
+ from axengine_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
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_1737379593_187673042.py')):
5
+ 'axengine_1737646074_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_1737379593_187673042 as _axengine
12
+ import axengine_1737646074_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_1737379593_187673042 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(667, globals())
17
+ from axengine_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
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_1737379593_187673042.py')):
5
+ 'axengine_1737646074_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_1737379593_187673042 as _axengine
12
+ import axengine_1737646074_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_1737379593_187673042 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(707, globals())
17
+ from axengine_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
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_1737379593_187673042.py')):
5
+ 'axengine_1737646074_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_1737379593_187673042 as _axengine
12
+ import axengine_1737646074_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_1737379593_187673042 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(432, globals())
17
+ from axengine_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
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_1737379593_187673042.py')):
5
+ 'axengine_1737646074_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_1737379593_187673042 as _axengine
12
+ import axengine_1737646074_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_1737379593_187673042 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(305, globals())
17
+ from axengine_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
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_1737379593_187673042.py')):
5
+ 'axengine_1737646074_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_1737379593_187673042 as _axengine
12
+ import axengine_1737646074_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_1737379593_187673042 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(518, globals())
17
+ from axengine_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
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_1737379593_187673042.py')):
5
+ 'axengine_1737646074_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_1737379593_187673042 as _axengine
12
+ import axengine_1737646074_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_1737379593_187673042 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(500, globals())
17
+ from axengine_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
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_1737379593_187673042.py')):
5
+ 'axengine_1737646074_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_1737379593_187673042 as _axengine
12
+ import axengine_1737646074_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_1737379593_187673042 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(58, globals())
17
+ from axengine_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
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_1737379593_187673042.py')):
5
+ 'axengine_1737646074_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_1737379593_187673042 as _axengine
12
+ import axengine_1737646074_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_1737379593_187673042 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(403, globals())
17
+ from axengine_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
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_1737379593_187673042.py')):
5
+ 'axengine_1737646074_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_1737379593_187673042 as _axengine
12
+ import axengine_1737646074_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_1737379593_187673042 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(670, globals())
17
+ from axengine_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
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_1737379593_187673042.py')):
5
+ 'axengine_1737646074_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_1737379593_187673042 as _axengine
12
+ import axengine_1737646074_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_1737379593_187673042 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(2, globals())
17
+ from axengine_1737646074_1010362681 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(799, globals())
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mocap-desktop-gui
3
- Version: 0.20.6
3
+ Version: 0.20.7
4
4
  Summary:
5
5
  Author: Move.ai
6
6
  Requires-Python: >=3.10.0,<3.11.dev0
@@ -0,0 +1,69 @@
1
+ mocap_desktop_gui/__init__.py,sha256=2b_ldmxJZ0wlwV4I2_7sOOCHfLYbfuuMKPUXt-zOe2o,726
2
+ mocap_desktop_gui/axengine_1737646074_1010362681.py,sha256=jyZTUN8VKRL3R58X1xnzWJBgn0qNk3uQUHybRJOx2yc,519863
3
+ mocap_desktop_gui/gen/__init__.py,sha256=a9OjYUbls8ctqgBJBW2WHPowIsKUowCXQ4OKIw7JlEc,726
4
+ mocap_desktop_gui/gen/rc_icons.py,sha256=TUFNHgbADjj4j1ClVSS0JfeHP2uEdsnqpDXPI_h-1Ug,726
5
+ mocap_desktop_gui/gen/rc_qml.py,sha256=lTUuJuphd_WcpkrE3nbXXKhf7z9aBUYLggtmMdRtc5Q,726
6
+ mocap_desktop_gui/gen/rc_style.py,sha256=lXIsiJTpQqNilPx85KJRvkAN6mQicu4q_YwzDg4YJa0,726
7
+ mocap_desktop_gui/main.py,sha256=Zg3SDokbslsOodszFpzkSMzy3zaO7yt4UXCMoxnlWCo,726
8
+ mocap_desktop_gui/mc/__init__.py,sha256=mOAWYBgeF3v0oP_rKUY35GSXfPZvRT31GPOFzv23JV0,726
9
+ mocap_desktop_gui/mc/bld_fbx_2_glb.py,sha256=pp02hG4T6rtofmra-_4HEWruuFQqokrKMUzCukGnqFA,725
10
+ mocap_desktop_gui/mc/bld_utils.py,sha256=GaQ6L5-AFHM8wB6hK22oAlULDN-D0vxWyGigkKYJwuo,726
11
+ mocap_desktop_gui/mc/camera_models.py,sha256=n2gy6iSmWZZVK861BKu9vRZjR_rOGva3Z87OsiQM3HM,726
12
+ mocap_desktop_gui/mc/mc_actor_profile.py,sha256=Iz8s48KGbKQhTG-gYfmbZ-914wDPeLCc6OmxVRxIjCI,726
13
+ mocap_desktop_gui/mc/mc_actor_profile_model.py,sha256=wP6FKhCKERigd4nA4-hQSshwsM1OHttRpE3bRo-gLxA,726
14
+ mocap_desktop_gui/mc/mc_app_manager.py,sha256=1daG4MKIbF0Q2fjzL_esUszvUIQDltNRZhBisIMw0rI,726
15
+ mocap_desktop_gui/mc/mc_auth_core.py,sha256=wYF1MCl3bG36_Ir8JYIbB5ULSHl22K5jWuzti9dsVjU,726
16
+ mocap_desktop_gui/mc/mc_auth_service.py,sha256=TT5mXM-Qmy88X2YMAQ7fg18Deg5F1urKuEviFf1FJts,726
17
+ mocap_desktop_gui/mc/mc_calib.py,sha256=1a07DxkhPnohbqhpvXOTs8wyJ6ETb1Y6VDR74wQhfbI,726
18
+ mocap_desktop_gui/mc/mc_camera_views_model.py,sha256=97iYItRsS2gBgWknweJP-pF2uzuDR2624KuvvcyC_cM,726
19
+ mocap_desktop_gui/mc/mc_cloud_service.py,sha256=YZeSjoVOR_mfooItjhwP2kEWHWQ9DptAC1P3x4I9TPI,726
20
+ mocap_desktop_gui/mc/mc_common_paths.py,sha256=d0Zlz3FRy5QOxCuo6nKDGhnuWWfLx5boyfQjbdMAT54,725
21
+ mocap_desktop_gui/mc/mc_context.py,sha256=YLidHOzxcM-cWw9NWmOy_9BHub_Jt5viznLBjYlkpks,726
22
+ mocap_desktop_gui/mc/mc_diagnosis.py,sha256=QuS4VNeklc3aWp4keBtwRJN4jKJQ4qGTdxrq6jEibPc,726
23
+ mocap_desktop_gui/mc/mc_file_util.py,sha256=Qa3em1rUCTK_H5UoBdb0mbOFXOT1pRS1BuPamVc4ZL8,726
24
+ mocap_desktop_gui/mc/mc_import_folder.py,sha256=xKdXAkF21mwDu1cEyLVv90ViW-8k6baelUVg0XMOx6Y,726
25
+ mocap_desktop_gui/mc/mc_project.py,sha256=12M3_elj1A-LsmPR7zZNJR-tAL7gqy5wdNfKZQDIkfQ,726
26
+ mocap_desktop_gui/mc/mc_project_manager.py,sha256=pahkpyGzI8aBWLndrl3UCCnNOyNQ1nHCc4sXqsU_btY,726
27
+ mocap_desktop_gui/mc/mc_scene_3d_service.py,sha256=M39srQBBlqtqCq0XKLSHhyn_7DF0MnKlg7NmKS4_WTs,724
28
+ mocap_desktop_gui/mc/mc_sync_media_player.py,sha256=XOg6y6zMRDHlowHG-r8bu7nOyXj3rG2ahDhdNGnYpNE,726
29
+ mocap_desktop_gui/mc/mc_sync_video_decoder_service.py,sha256=c29XvMNycNxXlnTQGPSXwp-ifbmkEzNZ0ekyOfbACxE,726
30
+ mocap_desktop_gui/mc/mc_sync_video_paint_item.py,sha256=sCT2sK8P0go10XNojlUcX2kffuWSrG-2uzdAxNuh2xY,726
31
+ mocap_desktop_gui/mc/mc_take.py,sha256=CFcYL2Q-hVJhaoMwbXrEzNEJ4gOUH_bIdkk2qfyOCb0,726
32
+ mocap_desktop_gui/mc/mc_take_cloud_job.py,sha256=6ktbE7K3giscczVByXbbbO-EJuernZbuKkwoN5Dt9jE,726
33
+ mocap_desktop_gui/mc/mc_take_cloud_job_action.py,sha256=VaVcoY1EcdgNkPKbqvzYhQcZK4Y_VtpAcebrzPb1UB0,726
34
+ mocap_desktop_gui/mc/mc_take_cloud_job_calib.py,sha256=xzshkI5RMJoZ_ekz9SVUUy94i5yT_tFTk_N8ykypJ64,726
35
+ mocap_desktop_gui/mc/mc_take_list_model.py,sha256=MhGjC6Fy3ydiq8jtcVkNedmDKVOojnzpayyoBCo-QdE,726
36
+ mocap_desktop_gui/mc/mc_take_local_job.py,sha256=xujkZH-J949Uh_su9bUczf25dyZkarrN8iWSE7XKAqU,725
37
+ mocap_desktop_gui/mc/mc_take_local_job_service.py,sha256=5eagfCRS6Zv6tjjHh5itt25zRLKveVs1nfxAHuKjwlE,726
38
+ mocap_desktop_gui/mc/mc_take_run_common.py,sha256=SqPGRKBAw50iThNrXQSvqBx1FhNPfy3Vx9HRI9HV4OU,726
39
+ mocap_desktop_gui/mc/mc_take_run_data_prep.py,sha256=_j81NARImYk4VRBJCyALpK1ANGa1cs5T2w6IiRE7ZEk,726
40
+ mocap_desktop_gui/mc/mc_take_run_settings.py,sha256=sljJH5D2Yjvu5x5DjYFlo6Y5yIa4_X0k3xg2mUdpYWw,726
41
+ mocap_desktop_gui/mc/mc_take_runs_cloud_manager.py,sha256=UJ-jVcMwuWApl6doYO435O73-fF4BcZrt7q7Gvs5zBo,726
42
+ mocap_desktop_gui/mc/mc_take_runs_local_manager.py,sha256=czfLQQs5rw0V_q1BAdPSNVfJJDgKoum4C6_etIxCaD0,726
43
+ mocap_desktop_gui/mc/mc_take_runs_manager.py,sha256=rTvTyPxGyXFI04_pWqYVC6_5JFw0PBGyN0Qegxwrsdw,726
44
+ mocap_desktop_gui/mc/mc_take_settings.py,sha256=z9lSLK0w1QhsWz_gwFGT_gJYbX_JmY7qanwi3CEq6tc,725
45
+ mocap_desktop_gui/mc/mc_take_video_model.py,sha256=UJRL4ToPi65R3Pg3Gnjd74XHbgd0ow49D8LNygqDye8,726
46
+ mocap_desktop_gui/mc/mc_task_trt_engine_gen.py,sha256=Oqy8he6nFmEruNguzWuk44MoBEBujJ_u4SFkpPuGOms,726
47
+ mocap_desktop_gui/mc/mc_video.py,sha256=lJ6n52HxRYP-c9yRUalY0Nj2_wFuPBeESINFjLsamUs,726
48
+ mocap_desktop_gui/mc/mc_video_manager.py,sha256=1p_IjDqznewL9-rFwwo_DJZH4GAlQ_uGwmWATnn6pPo,726
49
+ mocap_desktop_gui/mc/mc_video_uploader.py,sha256=5vQ7828fS_L08PNVSjLzII0wn10ogpj0O6T-0UDPjXo,726
50
+ mocap_desktop_gui/mc/mc_videos_uploader.py,sha256=_uwaoRvrwg1Zb4zJnGixbk8Ayi0AlNzCXJ2IdMZ_La0,726
51
+ mocap_desktop_gui/mc/mc_worker.py,sha256=lAs_eLy8JR7lXOk__CjZ97V0vZICKC0imrYsPZa4Fpk,726
52
+ mocap_desktop_gui/mc/qml_engine.py,sha256=bkTME0Cj7NMR-AyXjVobtIgbner5t5aDbTdLjtllUgM,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=F6TLXDy8eajok8lvdSVPmO2SmLQJb5Lf9W5lrkj9tVw,726
64
+ mocap_desktop_gui/sample.py,sha256=Nmnuw4_SDWXuukKwXCudxsthP5FDhkNMO3Yu_9XMQLc,726
65
+ mocap_desktop_gui/settings.ini,sha256=5zvMETGa_QWHnRN8eplSc-7_owS-7Ww03Gt_Qx1xBQA,8
66
+ mocap_desktop_gui-0.20.7.dist-info/METADATA,sha256=cV7LMkplaVY0bRx25xwmHUn-CLdHT7MMdyQCBDVrL1k,929
67
+ mocap_desktop_gui-0.20.7.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
68
+ mocap_desktop_gui-0.20.7.dist-info/entry_points.txt,sha256=CO37HQGXaM-H3mgUqsTWFln5hHy3SGvrVNcxny6y3So,60
69
+ mocap_desktop_gui-0.20.7.dist-info/RECORD,,
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ move-pro=mocap_desktop_gui.main:run_main
3
+