mocap-desktop-gui 0.9.2__py3-none-any.whl → 0.10.1__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (55) hide show
  1. mocap_desktop_gui/__init__.py +4 -4
  2. mocap_desktop_gui/axengine_1729853376_4145030435.py +246 -0
  3. mocap_desktop_gui/gen/rc_icons.py +4 -4
  4. mocap_desktop_gui/gen/rc_qml.py +4 -4
  5. mocap_desktop_gui/gen/rc_style.py +4 -4
  6. mocap_desktop_gui/main.py +3 -3
  7. mocap_desktop_gui/mc/__init__.py +4 -4
  8. mocap_desktop_gui/mc/bld_fbx_2_glb.py +4 -4
  9. mocap_desktop_gui/mc/bld_utils.py +4 -4
  10. mocap_desktop_gui/mc/camera_models.py +4 -4
  11. mocap_desktop_gui/mc/mc_app_manager.py +4 -4
  12. mocap_desktop_gui/mc/mc_auth_core.py +4 -4
  13. mocap_desktop_gui/mc/mc_auth_service.py +4 -4
  14. mocap_desktop_gui/mc/mc_calib.py +4 -4
  15. mocap_desktop_gui/mc/mc_cam_ui_states.py +4 -4
  16. mocap_desktop_gui/mc/mc_cloud_service.py +4 -4
  17. mocap_desktop_gui/mc/mc_common_paths.py +4 -4
  18. mocap_desktop_gui/mc/mc_context.py +4 -4
  19. mocap_desktop_gui/mc/mc_file_util.py +4 -4
  20. mocap_desktop_gui/mc/mc_import_folder.py +4 -4
  21. mocap_desktop_gui/mc/mc_project.py +4 -4
  22. mocap_desktop_gui/mc/mc_project_manager.py +4 -4
  23. mocap_desktop_gui/mc/mc_scene_3d_service.py +4 -4
  24. mocap_desktop_gui/mc/mc_sync_media_player.py +4 -4
  25. mocap_desktop_gui/mc/mc_sync_video_decoder_service.py +4 -4
  26. mocap_desktop_gui/mc/mc_sync_video_paint_item.py +4 -4
  27. mocap_desktop_gui/mc/mc_take.py +4 -4
  28. mocap_desktop_gui/mc/mc_take_cloud_job.py +4 -4
  29. mocap_desktop_gui/mc/mc_take_cloud_job_action.py +4 -4
  30. mocap_desktop_gui/mc/mc_take_cloud_job_calib.py +4 -4
  31. mocap_desktop_gui/mc/mc_take_list_model.py +4 -4
  32. mocap_desktop_gui/mc/mc_take_local_job.py +4 -4
  33. mocap_desktop_gui/mc/mc_take_local_job_service.py +4 -4
  34. mocap_desktop_gui/mc/mc_take_run_common.py +4 -4
  35. mocap_desktop_gui/mc/mc_take_run_data_prep.py +4 -4
  36. mocap_desktop_gui/mc/mc_take_run_settings.py +4 -4
  37. mocap_desktop_gui/mc/mc_take_runs_cloud_manager.py +4 -4
  38. mocap_desktop_gui/mc/mc_take_runs_local_manager.py +4 -4
  39. mocap_desktop_gui/mc/mc_take_runs_manager.py +4 -4
  40. mocap_desktop_gui/mc/mc_take_settings.py +4 -4
  41. mocap_desktop_gui/mc/mc_take_video_model.py +3 -3
  42. mocap_desktop_gui/mc/mc_task_trt_engine_gen.py +4 -4
  43. mocap_desktop_gui/mc/mc_worker.py +4 -4
  44. mocap_desktop_gui/mc/qml_engine.py +4 -4
  45. mocap_desktop_gui/mc/settings/settings_action.yaml +1 -1
  46. mocap_desktop_gui/mc/util.py +4 -4
  47. mocap_desktop_gui/operations/__init__.py +4 -4
  48. mocap_desktop_gui/sample.py +3 -3
  49. mocap_desktop_gui/utils/__init__.py +4 -4
  50. {mocap_desktop_gui-0.9.2.dist-info → mocap_desktop_gui-0.10.1.dist-info}/METADATA +1 -1
  51. mocap_desktop_gui-0.10.1.dist-info/RECORD +61 -0
  52. mocap_desktop_gui/axengine_1729766419_3907293431.py +0 -246
  53. mocap_desktop_gui-0.9.2.dist-info/RECORD +0 -61
  54. {mocap_desktop_gui-0.9.2.dist-info → mocap_desktop_gui-0.10.1.dist-info}/WHEEL +0 -0
  55. {mocap_desktop_gui-0.9.2.dist-info → mocap_desktop_gui-0.10.1.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_1729766419_3907293431.py')):
5
+ 'axengine_1729853376_4145030435.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_1729766419_3907293431 as _axengine
12
+ import axengine_1729853376_4145030435 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_1729766419_3907293431 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(299, globals())
17
+ from axengine_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(297, 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_1729766419_3907293431.py')):
5
+ 'axengine_1729853376_4145030435.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_1729766419_3907293431 as _axengine
12
+ import axengine_1729853376_4145030435 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_1729766419_3907293431 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(63, globals())
17
+ from axengine_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(59, 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_1729766419_3907293431.py')):
5
+ 'axengine_1729853376_4145030435.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_1729766419_3907293431 as _axengine
12
+ import axengine_1729853376_4145030435 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_1729766419_3907293431 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(289, globals())
17
+ from axengine_1729853376_4145030435 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_1729766419_3907293431.py')):
5
+ 'axengine_1729853376_4145030435.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_1729766419_3907293431 as _axengine
12
+ import axengine_1729853376_4145030435 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_1729766419_3907293431 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(182, globals())
17
+ from axengine_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(180, 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_1729766419_3907293431.py')):
5
+ 'axengine_1729853376_4145030435.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_1729766419_3907293431 as _axengine
12
+ import axengine_1729853376_4145030435 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_1729766419_3907293431 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(74, globals())
17
+ from axengine_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(70, 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_1729766419_3907293431.py')):
5
+ 'axengine_1729853376_4145030435.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_1729766419_3907293431 as _axengine
12
+ import axengine_1729853376_4145030435 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_1729766419_3907293431 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(358, globals())
17
+ from axengine_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(365, 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_1729766419_3907293431.py')):
5
+ 'axengine_1729853376_4145030435.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_1729766419_3907293431 as _axengine
12
+ import axengine_1729853376_4145030435 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_1729766419_3907293431 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(420, globals())
17
+ from axengine_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(427, 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_1729766419_3907293431.py')):
5
+ 'axengine_1729853376_4145030435.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_1729766419_3907293431 as _axengine
12
+ import axengine_1729853376_4145030435 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_1729766419_3907293431 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(286, globals())
17
+ from axengine_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(284, 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_1729766419_3907293431.py')):
5
+ 'axengine_1729853376_4145030435.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_1729766419_3907293431 as _axengine
12
+ import axengine_1729853376_4145030435 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_1729766419_3907293431 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(436, globals())
17
+ from axengine_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(443, 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_1729766419_3907293431.py')):
5
+ 'axengine_1729853376_4145030435.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_1729766419_3907293431 as _axengine
12
+ import axengine_1729853376_4145030435 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_1729766419_3907293431 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(269, globals())
17
+ from axengine_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(267, 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_1729766419_3907293431.py')):
5
+ 'axengine_1729853376_4145030435.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_1729766419_3907293431 as _axengine
12
+ import axengine_1729853376_4145030435 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_1729766419_3907293431 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(14, 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_1729766419_3907293431.py')):
5
+ 'axengine_1729853376_4145030435.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_1729766419_3907293431 as _axengine
12
+ import axengine_1729853376_4145030435 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_1729766419_3907293431 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(383, globals())
17
+ from axengine_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(390, 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_1729766419_3907293431.py')):
5
+ 'axengine_1729853376_4145030435.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_1729766419_3907293431 as _axengine
12
+ import axengine_1729853376_4145030435 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_1729766419_3907293431 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(423, globals())
17
+ from axengine_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(430, 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_1729766419_3907293431.py')):
5
+ 'axengine_1729853376_4145030435.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_1729766419_3907293431 as _axengine
12
+ import axengine_1729853376_4145030435 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_1729766419_3907293431 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(66, globals())
17
+ from axengine_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(62, globals())
@@ -323,7 +323,7 @@ ops_cfg:
323
323
  camera_model: unknown
324
324
  export_fbx: true
325
325
  rig_to_export: both
326
- render_viz: true
326
+ render_viz: false
327
327
  resolution_x: 720
328
328
  resolution_y: 1280
329
329
  resolution_percentage: 100
@@ -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_1729766419_3907293431.py')):
5
+ 'axengine_1729853376_4145030435.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_1729766419_3907293431 as _axengine
12
+ import axengine_1729853376_4145030435 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_1729766419_3907293431 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(251, globals())
17
+ from axengine_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(249, 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_1729766419_3907293431.py')):
5
+ 'axengine_1729853376_4145030435.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_1729766419_3907293431 as _axengine
12
+ import axengine_1729853376_4145030435 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_1729766419_3907293431 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(557, globals())
17
+ from axengine_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(565, 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_1729766419_3907293431.py')):
5
+ 'axengine_1729853376_4145030435.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_1729766419_3907293431 as _axengine
12
+ import axengine_1729853376_4145030435 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_1729766419_3907293431 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(6, 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_1729766419_3907293431.py')):
5
+ 'axengine_1729853376_4145030435.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_1729766419_3907293431 as _axengine
12
+ import axengine_1729853376_4145030435 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_1729766419_3907293431 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(568, globals())
17
+ from axengine_1729853376_4145030435 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(576, globals())
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mocap-desktop-gui
3
- Version: 0.9.2
3
+ Version: 0.10.1
4
4
  Summary:
5
5
  Author: Move.ai
6
6
  Requires-Python: >=3.10,<3.13
@@ -0,0 +1,61 @@
1
+ mocap_desktop_gui/__init__.py,sha256=l9fvh0rYslxleRDpPkCxd-KjJ--pCVAKTmxIQCtOWps,726
2
+ mocap_desktop_gui/axengine_1729853376_4145030435.py,sha256=IMr6aSjY_4OUDdWKppbxC0SQaiM_BWg1OgEmXZ919Ks,423273
3
+ mocap_desktop_gui/gen/rc_icons.py,sha256=MT8V_3i4SixoPDT855lvPRDgSNZ03LpY6LCCVa9XFkU,726
4
+ mocap_desktop_gui/gen/rc_qml.py,sha256=6jJkqv1OPObB8LUm9pYbcOv2kEYHEXdx4h2XwEtYGvU,726
5
+ mocap_desktop_gui/gen/rc_style.py,sha256=Y6AFld1NfygUh3kzDI7jd6YYM85HNWFLqZbQeFugfQA,726
6
+ mocap_desktop_gui/main.py,sha256=pMH2HWZoQQyMs7YaLzC0jvqleFtXAS7-P5LxX_11nvg,724
7
+ mocap_desktop_gui/mc/__init__.py,sha256=Q4cYVdb7a-4gEGjPJqSi94f_dTgE6OmHpz5rG-jg5jA,726
8
+ mocap_desktop_gui/mc/bld_fbx_2_glb.py,sha256=5v8cN5UEMXR_rbUp9Ug4BiutuoHgukBJicLkPNfSBUk,726
9
+ mocap_desktop_gui/mc/bld_utils.py,sha256=jqTP9VDTQ-TOlMocoK_xghVDBzb3CIabzkiQZmeo1gQ,726
10
+ mocap_desktop_gui/mc/camera_models.py,sha256=A3ZJOeAaJy1V0_ExDQsPdvU1f7CjSEoNcI9XSGTdPlI,726
11
+ mocap_desktop_gui/mc/mc_app_manager.py,sha256=N3wY0ca30po11EKwDdvq-hN_9Po815e85NnIgWxSqw4,726
12
+ mocap_desktop_gui/mc/mc_auth_core.py,sha256=Xs8UR7W1iqx7n1QPRV72gtoJjve33AOrnmTZvCQW04Y,726
13
+ mocap_desktop_gui/mc/mc_auth_service.py,sha256=FvardX2uXmhnpTQjpYx2BliGIvExY3mp5XVd2TByxb8,726
14
+ mocap_desktop_gui/mc/mc_calib.py,sha256=3kq7Nh3LbNintWwD8Ez3fd-BEvY7L6F_NOBAc7wJroc,726
15
+ mocap_desktop_gui/mc/mc_cam_ui_states.py,sha256=n89btqPAsB0om7hXL70CGRSaXH5SNjfeIDeUJUIeCl4,726
16
+ mocap_desktop_gui/mc/mc_cloud_service.py,sha256=v59J3u7Vd6VhM6UX7pOz1sdCpm3G1_t8mhmkSg9y6wo,726
17
+ mocap_desktop_gui/mc/mc_common_paths.py,sha256=JtC-X_pWJYFbeoXftupevKeNpb6vlffKp_uXPfLWr0A,726
18
+ mocap_desktop_gui/mc/mc_context.py,sha256=l9BzYiQcS_Q-Y0TKUJBcmSGtEgFXROMU70p505QnT5s,726
19
+ mocap_desktop_gui/mc/mc_file_util.py,sha256=lEVquvEUw1u1vokB0zEgfESyCLlJQaFhnYLwl2yNYbM,726
20
+ mocap_desktop_gui/mc/mc_import_folder.py,sha256=WzqjZeOKLRJcZ2hMTcKQNOjxTmvhMgqy3A-g1qZ5AtQ,726
21
+ mocap_desktop_gui/mc/mc_project.py,sha256=gOBXdmX-2ZNXaRI_Ndnn2DPUhtfjhiUW1qAdRSB5k84,726
22
+ mocap_desktop_gui/mc/mc_project_manager.py,sha256=KBOwt2psdOc6V8UcGVVHfH79xEft6TZbkg8OJ3EXtWA,725
23
+ mocap_desktop_gui/mc/mc_scene_3d_service.py,sha256=lpKWoMOtSZq-HrYZJBDdi8JZiZxN_67-xa97i43y1M0,726
24
+ mocap_desktop_gui/mc/mc_sync_media_player.py,sha256=0XeSbRGfagxkX92lc4KunedSDp1kPrAw9Hr1woX2aiI,726
25
+ mocap_desktop_gui/mc/mc_sync_video_decoder_service.py,sha256=077Zf99RtidBo1jrRN4gVE8-a3gXwnslxl8ZuKDoNgY,726
26
+ mocap_desktop_gui/mc/mc_sync_video_paint_item.py,sha256=5g6AbzY1jkRZI8FKrff-QP7lOAXXv_ruNnH2V_S3HPQ,726
27
+ mocap_desktop_gui/mc/mc_take.py,sha256=hlxg1k-Jlz1_Uc63NLJOzymoEL9MbEs2QWbE3JvE2v0,726
28
+ mocap_desktop_gui/mc/mc_take_cloud_job.py,sha256=vR4scFvItCYgyvLtuVnlWqoiX9YR9v3hweOUCIt_rSg,726
29
+ mocap_desktop_gui/mc/mc_take_cloud_job_action.py,sha256=X45e1L93WAWox92sgWUPPVkrK1b4zFTUFV-w1bOz6LU,726
30
+ mocap_desktop_gui/mc/mc_take_cloud_job_calib.py,sha256=YFKJc7S8RtU1iWdmxwrx0uat0-Z-elb6O79ku2gUPPw,726
31
+ mocap_desktop_gui/mc/mc_take_list_model.py,sha256=9st-6GtA4anSj0uuouQdHgcEt7AF0Pe0nBoLqmkdZNM,726
32
+ mocap_desktop_gui/mc/mc_take_local_job.py,sha256=OEI4fnch1JbGqeon_GdpA1m1TnRWu-064BmyaiSAKuk,725
33
+ mocap_desktop_gui/mc/mc_take_local_job_service.py,sha256=pnOJK03D5L6N6QdP3bYw3IKi2yujnasNfmRBOwwhIFU,726
34
+ mocap_desktop_gui/mc/mc_take_run_common.py,sha256=KQfxw60Zswbb4dXco8HDGvkbDpAqHF1Idzs2G2scAYw,726
35
+ mocap_desktop_gui/mc/mc_take_run_data_prep.py,sha256=7-sG7dmVwUa8AmFxhh4sUC3QBgoAHhV1csAXi_V5REg,725
36
+ mocap_desktop_gui/mc/mc_take_run_settings.py,sha256=3I-HS1Ye_YbBIZAr4NfUXnh3TT19U3ZAU6G0poa_Gz0,726
37
+ mocap_desktop_gui/mc/mc_take_runs_cloud_manager.py,sha256=34cIHUU8bgWD0MwFeJ86FMelhEm9s88o80fM-yhgNIg,726
38
+ mocap_desktop_gui/mc/mc_take_runs_local_manager.py,sha256=eMtp8jRW5JgfDqNOBADbNEaYO60vczq1BJwaon286Oo,726
39
+ mocap_desktop_gui/mc/mc_take_runs_manager.py,sha256=G9mi-IfIoAiSorwBbpooVX5HNgVdhBPyzq-RqqV0cxE,726
40
+ mocap_desktop_gui/mc/mc_take_settings.py,sha256=ekrzM7LOBAZxkAstB-ntvAXTjHKVYCb7EaAgJnZEZGw,726
41
+ mocap_desktop_gui/mc/mc_take_video_model.py,sha256=wd17183ai65Cy2JyPaR_Y1zNnJUASsHc4L54a12FuMQ,725
42
+ mocap_desktop_gui/mc/mc_task_trt_engine_gen.py,sha256=_dcaMxPu5XILO2WJuLKe4GXaLXQbFkUDGsDCYwQkwrI,726
43
+ mocap_desktop_gui/mc/mc_worker.py,sha256=o-DLEKezCM0u1Mf7thy0P61k-ERnPOUsv2fhA52dxcE,726
44
+ mocap_desktop_gui/mc/qml_engine.py,sha256=4NBpzCJrGoUuu7s8YnWyAJJ2_rsEIoi-YN666w63Zi8,725
45
+ mocap_desktop_gui/mc/rig/Move_Mo.blend,sha256=rNN1yapGy_ok0rd5BFO7ldkTcNeeROnIrmKa2COA_Ic,29633272
46
+ mocap_desktop_gui/mc/rig/mapping_body.csv,sha256=CaJ9SLWvXNFU44ft-VI9Br4US2hmdLoMh8w8KnXvHHg,551
47
+ mocap_desktop_gui/mc/rig/mapping_fingers.csv,sha256=cy1EX5aJTRjE3dQLe9YsdrGUsxGqPjYupb99fMw_k18,1030
48
+ mocap_desktop_gui/mc/rig/sdc_rig.zip,sha256=hYCBzYFZKuSr15Xs0nql-iD6aLpuTzy-_5o2CyZjiJE,9022411
49
+ mocap_desktop_gui/mc/scene/scene_3d.blend.5a95cd45,sha256=YBmgAeDqATPeJfra3WrblJ3qpn8QfPtbh4W5Elvn0bM,31290788
50
+ mocap_desktop_gui/mc/settings/camera_models.yaml,sha256=cokr4yWMbTTw2X0ObvBIM_j9HWqgBa4QHqSDlF_XpSo,3320
51
+ mocap_desktop_gui/mc/settings/settings_action.yaml,sha256=kD-3ZVjVvlBg8BN5RhSFn2-io-lMMUV68Hn8CFUkbaM,18133
52
+ mocap_desktop_gui/mc/settings/settings_extrinsic.yaml,sha256=vDTZqkq8n6XfocRjJlolEj0W5sKuC5CpZvLc4KEnkFU,6483
53
+ mocap_desktop_gui/mc/util.py,sha256=f-411UCxd7R4HFyR3is3um0wmQecJU-pH0yUiH-GAbE,726
54
+ mocap_desktop_gui/operations/__init__.py,sha256=gpeAit3DcH6Spceed56YnzSfjzJfi1knZhD0aXDLARU,726
55
+ mocap_desktop_gui/sample.py,sha256=TMzNObZf7_5DFKS57g27IFyjFfCELXTEx9zfsMzFvC8,724
56
+ mocap_desktop_gui/settings.ini,sha256=kBwDIpL74uLZhID3_yaECygFKftAyevRrN7PRcjpVvc,131
57
+ mocap_desktop_gui/utils/__init__.py,sha256=TrFmoz2U-VgXRS39dIXt6zrOcTLCLZmuOLwmRswB8bY,726
58
+ mocap_desktop_gui-0.10.1.dist-info/METADATA,sha256=jb8C6fXU-_EiSDCGiAqm9jDSzp7BViesqrPZ-2se3P8,1024
59
+ mocap_desktop_gui-0.10.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
60
+ mocap_desktop_gui-0.10.1.dist-info/entry_points.txt,sha256=xMiDqkrscETVFaPjOzROvqLLQqlaurQKY-U4nPckFog,64
61
+ mocap_desktop_gui-0.10.1.dist-info/RECORD,,