mocap-desktop-gui 0.17.0__py3-none-any.whl → 0.18.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. mocap_desktop_gui/__init__.py +3 -3
  2. mocap_desktop_gui/axengine_1731509989_1041659107.py +246 -0
  3. mocap_desktop_gui/gen/__init__.py +18 -0
  4. mocap_desktop_gui/gen/rc_icons.py +3 -3
  5. mocap_desktop_gui/gen/rc_qml.py +4 -4
  6. mocap_desktop_gui/gen/rc_style.py +4 -4
  7. mocap_desktop_gui/main.py +3 -3
  8. mocap_desktop_gui/mc/__init__.py +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_app_manager.py +3 -3
  13. mocap_desktop_gui/mc/mc_auth_core.py +3 -3
  14. mocap_desktop_gui/mc/mc_auth_service.py +3 -3
  15. mocap_desktop_gui/mc/mc_calib.py +3 -3
  16. mocap_desktop_gui/mc/mc_cam_ui_states.py +3 -3
  17. mocap_desktop_gui/mc/mc_cloud_service.py +3 -3
  18. mocap_desktop_gui/mc/mc_common_paths.py +3 -3
  19. mocap_desktop_gui/mc/mc_context.py +3 -3
  20. mocap_desktop_gui/mc/mc_file_util.py +3 -3
  21. mocap_desktop_gui/mc/mc_import_folder.py +3 -3
  22. mocap_desktop_gui/mc/mc_project.py +3 -3
  23. mocap_desktop_gui/mc/mc_project_manager.py +3 -3
  24. mocap_desktop_gui/mc/mc_scene_3d_service.py +3 -3
  25. mocap_desktop_gui/mc/mc_sync_media_player.py +3 -3
  26. mocap_desktop_gui/mc/mc_sync_video_decoder_service.py +3 -3
  27. mocap_desktop_gui/mc/mc_sync_video_paint_item.py +3 -3
  28. mocap_desktop_gui/mc/mc_take.py +3 -3
  29. mocap_desktop_gui/mc/mc_take_cloud_job.py +3 -3
  30. mocap_desktop_gui/mc/mc_take_cloud_job_action.py +3 -3
  31. mocap_desktop_gui/mc/mc_take_cloud_job_calib.py +3 -3
  32. mocap_desktop_gui/mc/mc_take_list_model.py +3 -3
  33. mocap_desktop_gui/mc/mc_take_local_job.py +3 -3
  34. mocap_desktop_gui/mc/mc_take_local_job_service.py +3 -3
  35. mocap_desktop_gui/mc/mc_take_run_common.py +3 -3
  36. mocap_desktop_gui/mc/mc_take_run_data_prep.py +3 -3
  37. mocap_desktop_gui/mc/mc_take_run_settings.py +3 -3
  38. mocap_desktop_gui/mc/mc_take_runs_cloud_manager.py +3 -3
  39. mocap_desktop_gui/mc/mc_take_runs_local_manager.py +3 -3
  40. mocap_desktop_gui/mc/mc_take_runs_manager.py +3 -3
  41. mocap_desktop_gui/mc/mc_take_settings.py +3 -3
  42. mocap_desktop_gui/mc/mc_take_video_model.py +3 -3
  43. mocap_desktop_gui/mc/mc_task_trt_engine_gen.py +3 -3
  44. mocap_desktop_gui/mc/mc_worker.py +3 -3
  45. mocap_desktop_gui/mc/qml_engine.py +3 -3
  46. mocap_desktop_gui/mc/util.py +3 -3
  47. mocap_desktop_gui/sample.py +3 -3
  48. {mocap_desktop_gui-0.17.0.dist-info → mocap_desktop_gui-0.18.0.dist-info}/METADATA +1 -1
  49. mocap_desktop_gui-0.18.0.dist-info/RECORD +62 -0
  50. mocap_desktop_gui/axengine_1731500472_1041659107.py +0 -246
  51. mocap_desktop_gui-0.17.0.dist-info/RECORD +0 -61
  52. {mocap_desktop_gui-0.17.0.dist-info → mocap_desktop_gui-0.18.0.dist-info}/WHEEL +0 -0
  53. {mocap_desktop_gui-0.17.0.dist-info → mocap_desktop_gui-0.18.0.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_1731500472_1041659107.py')):
5
+ 'axengine_1731509989_1041659107.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_1731500472_1041659107 as _axengine
12
+ import axengine_1731509989_1041659107 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_1731500472_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1731509989_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(310, 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_1731500472_1041659107.py')):
5
+ 'axengine_1731509989_1041659107.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_1731500472_1041659107 as _axengine
12
+ import axengine_1731509989_1041659107 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_1731500472_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1731509989_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(58, 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_1731500472_1041659107.py')):
5
+ 'axengine_1731509989_1041659107.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_1731500472_1041659107 as _axengine
12
+ import axengine_1731509989_1041659107 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_1731500472_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1731509989_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(298, 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_1731500472_1041659107.py')):
5
+ 'axengine_1731509989_1041659107.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_1731500472_1041659107 as _axengine
12
+ import axengine_1731509989_1041659107 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_1731500472_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1731509989_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(189, 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_1731500472_1041659107.py')):
5
+ 'axengine_1731509989_1041659107.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_1731500472_1041659107 as _axengine
12
+ import axengine_1731509989_1041659107 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_1731500472_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1731509989_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(69, 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_1731500472_1041659107.py')):
5
+ 'axengine_1731509989_1041659107.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_1731500472_1041659107 as _axengine
12
+ import axengine_1731509989_1041659107 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_1731500472_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1731509989_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(381, 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_1731500472_1041659107.py')):
5
+ 'axengine_1731509989_1041659107.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_1731500472_1041659107 as _axengine
12
+ import axengine_1731509989_1041659107 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_1731500472_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1731509989_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
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_1731500472_1041659107.py')):
5
+ 'axengine_1731509989_1041659107.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_1731500472_1041659107 as _axengine
12
+ import axengine_1731509989_1041659107 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_1731500472_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1731509989_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(294, 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_1731500472_1041659107.py')):
5
+ 'axengine_1731509989_1041659107.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_1731500472_1041659107 as _axengine
12
+ import axengine_1731509989_1041659107 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_1731500472_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1731509989_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(459, 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_1731500472_1041659107.py')):
5
+ 'axengine_1731509989_1041659107.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_1731500472_1041659107 as _axengine
12
+ import axengine_1731509989_1041659107 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_1731500472_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1731509989_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(277, 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_1731500472_1041659107.py')):
5
+ 'axengine_1731509989_1041659107.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_1731500472_1041659107 as _axengine
12
+ import axengine_1731509989_1041659107 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_1731500472_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1731509989_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(15, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1731500472_1041659107.py')):
5
+ 'axengine_1731509989_1041659107.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_1731500472_1041659107 as _axengine
12
+ import axengine_1731509989_1041659107 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_1731500472_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1731509989_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(406, 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_1731500472_1041659107.py')):
5
+ 'axengine_1731509989_1041659107.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_1731500472_1041659107 as _axengine
12
+ import axengine_1731509989_1041659107 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_1731500472_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1731509989_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(446, 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_1731500472_1041659107.py')):
5
+ 'axengine_1731509989_1041659107.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_1731500472_1041659107 as _axengine
12
+ import axengine_1731509989_1041659107 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_1731500472_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1731509989_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(61, 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_1731500472_1041659107.py')):
5
+ 'axengine_1731509989_1041659107.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_1731500472_1041659107 as _axengine
12
+ import axengine_1731509989_1041659107 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_1731500472_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1731509989_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(259, 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_1731500472_1041659107.py')):
5
+ 'axengine_1731509989_1041659107.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_1731500472_1041659107 as _axengine
12
+ import axengine_1731509989_1041659107 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_1731500472_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1731509989_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(6, globals())
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mocap-desktop-gui
3
- Version: 0.17.0
3
+ Version: 0.18.0
4
4
  Summary:
5
5
  Author: Move.ai
6
6
  Requires-Python: >=3.10,<3.13
@@ -0,0 +1,62 @@
1
+ mocap_desktop_gui/__init__.py,sha256=V79qDWjk09OFxtfU2zeXmmLLOfAfyv7vHL14Tqw841I,726
2
+ mocap_desktop_gui/axengine_1731509989_1041659107.py,sha256=0-W8BSYikM0j7iHGZ15OoKkO7ztVwpKTi2Oa9DgUvvE,438478
3
+ mocap_desktop_gui/gen/__init__.py,sha256=tzA_QPzi3A6f5nBf_rxG2kwLbTJ6DAdmXQCY--8jIyQ,726
4
+ mocap_desktop_gui/gen/rc_icons.py,sha256=CEuxo4HZy0EIH4Y5u7Tiq3phLZ0dWzyDwJeylffbByw,726
5
+ mocap_desktop_gui/gen/rc_qml.py,sha256=ddTnEAqw1d1BxDurWL5irpQqNn9NqClnzoZi7vZnoYM,726
6
+ mocap_desktop_gui/gen/rc_style.py,sha256=vaMREq7Izxz2OdyaMsQ5-3YpazBpks2hyTSyLL2VDMs,726
7
+ mocap_desktop_gui/main.py,sha256=FEHmGQgch1AYu9FpIJumgiWZ_sia-Q-_SmCnxMNnazc,724
8
+ mocap_desktop_gui/mc/__init__.py,sha256=Fam8ExyB1zBR3euyF2nU7INLKX-uZKCj4ttEacTJqqI,726
9
+ mocap_desktop_gui/mc/bld_fbx_2_glb.py,sha256=Yt8Pgb-zwelYUn4_GNI2TfInBD5C866bK3LrVH3O79M,726
10
+ mocap_desktop_gui/mc/bld_utils.py,sha256=r_0Y0sVu_y9-zbztGQxuT8ejiGgyc1ZZ7iMh0KV7T1U,726
11
+ mocap_desktop_gui/mc/camera_models.py,sha256=YwHuO7fFISyjr0bbgZy43yXq-2MqRyjhWlmR-D3BgfE,726
12
+ mocap_desktop_gui/mc/mc_app_manager.py,sha256=ng6LDqWvpazLw9TbFCiAHhHcBk4klrXW8IaWEHpruws,726
13
+ mocap_desktop_gui/mc/mc_auth_core.py,sha256=gy4BxzgkD_Km7dxz9fK4wF8UWQtG3a2JcndwcjrDdY0,726
14
+ mocap_desktop_gui/mc/mc_auth_service.py,sha256=hA1dxNlKQdkWFTWJfx51YpOUYYW6A0RXO13AUj18v7Q,726
15
+ mocap_desktop_gui/mc/mc_calib.py,sha256=1Y-srRds8N_DcelkVEtdyFZbvsbPnDdUZ4IfhtJMiRQ,726
16
+ mocap_desktop_gui/mc/mc_cam_ui_states.py,sha256=OlDoQ2V2SYElLKqUXSovBeL4kPH9k8Sa1UoZqEsiEfw,726
17
+ mocap_desktop_gui/mc/mc_cloud_service.py,sha256=9mq-LUqg3L1AoLVFwNFCK3P6WG5_-GhRVKJA_SXuOhM,726
18
+ mocap_desktop_gui/mc/mc_common_paths.py,sha256=_evDS0PfAL3LZdOFPSV2EVJifJ6hs0YAR5eT6te2slE,726
19
+ mocap_desktop_gui/mc/mc_context.py,sha256=kslb_U53vdy9d_6atmTB9kgvS2WYRajMTf83KURN5kA,726
20
+ mocap_desktop_gui/mc/mc_file_util.py,sha256=_krAfscQtLx1tjmOmMGpUKOE5bURtN7_gyozcib39Og,726
21
+ mocap_desktop_gui/mc/mc_import_folder.py,sha256=w_9zHpM90OHc9Ddiy7RazzQ461KUhjgfrIYRXrJLFXk,726
22
+ mocap_desktop_gui/mc/mc_project.py,sha256=eRdCFJbx530hw3gVCBlE2jed3fko35F1qLfiBqEPYNA,726
23
+ mocap_desktop_gui/mc/mc_project_manager.py,sha256=SkX3430vgOBFBGmTxh621sBXadN2plOq5hP5NuZFes0,725
24
+ mocap_desktop_gui/mc/mc_scene_3d_service.py,sha256=S2QJUlkE8GGiUXLQasspd5DT_J5v_NbQVSh6YJLnyTc,726
25
+ mocap_desktop_gui/mc/mc_sync_media_player.py,sha256=SnSlJfIA0Fem9Lu4KUXNwUMk9-p-ed5j4yl8L-TYxog,726
26
+ mocap_desktop_gui/mc/mc_sync_video_decoder_service.py,sha256=aCWoWyz6tSi4HTyA8hT4WOLLoxM3XbGoICG3cySMCGI,726
27
+ mocap_desktop_gui/mc/mc_sync_video_paint_item.py,sha256=OK_c-mLSuQVVaTdZ2za0OjOPtELiM9i6htPbz-Clc48,726
28
+ mocap_desktop_gui/mc/mc_take.py,sha256=hhPUOEjivYa9_OKnTU2rNDswO4lEVFqHw-FtfEziKEw,726
29
+ mocap_desktop_gui/mc/mc_take_cloud_job.py,sha256=e0Q4NpTrOP0WWAgmSi4XG5DKnbks-anvkvjiusDIRo8,726
30
+ mocap_desktop_gui/mc/mc_take_cloud_job_action.py,sha256=4z68mWdBfXAqk_dPhwfiD5JVlhXGT-374BITBAnCy48,726
31
+ mocap_desktop_gui/mc/mc_take_cloud_job_calib.py,sha256=RVsQUsPQ2hMc0IbXLpkN0RwxtzH98LqqHUlGcR0O_Y4,726
32
+ mocap_desktop_gui/mc/mc_take_list_model.py,sha256=dRg6APII8WP86t3FHDO8jFyEykM4g1iEpZC4Ct1FX8U,726
33
+ mocap_desktop_gui/mc/mc_take_local_job.py,sha256=YZ1dK311hPdQ5ph8j-KzoxDIj2OkK4DIrjfTJqVdouI,725
34
+ mocap_desktop_gui/mc/mc_take_local_job_service.py,sha256=TKPmrGj2zd4okmcJBHf3BtnVd0g_6yxMOB06q5finFw,726
35
+ mocap_desktop_gui/mc/mc_take_run_common.py,sha256=k_PcBV_CxC0HmRQ647mVNxWN9S-0T_UBg7s2L5RKumw,726
36
+ mocap_desktop_gui/mc/mc_take_run_data_prep.py,sha256=vWN2XF5VVmHwn00w09rMeL0awZ2gM6OYpGVhQod9cFM,725
37
+ mocap_desktop_gui/mc/mc_take_run_settings.py,sha256=8Lkcdo7ixj-b7LbY0x7CuY8azW7sC6_YTgUI3sQQ1ps,726
38
+ mocap_desktop_gui/mc/mc_take_runs_cloud_manager.py,sha256=qdO4kmHQ19WcSH9hp9T-hug_2rD-veA9I4Vd-0mDDwY,726
39
+ mocap_desktop_gui/mc/mc_take_runs_local_manager.py,sha256=IHLdcqRh8xl7dO-XLzxzLZjcixupxYrJ1U825x60Iq4,726
40
+ mocap_desktop_gui/mc/mc_take_runs_manager.py,sha256=O1AfOL2W0UPdtRc3KdruqJnICfXsoQXb5Sh5gcDy4UM,726
41
+ mocap_desktop_gui/mc/mc_take_settings.py,sha256=6a6sWQ_ETNRtNVmFCx0_yAgXLNuxYTwCRE_QfdHMmM4,726
42
+ mocap_desktop_gui/mc/mc_take_video_model.py,sha256=QRhv7bY4NaMsCjD6rXjlNMUXW7AOvQoJWGdOPWR-DCU,725
43
+ mocap_desktop_gui/mc/mc_task_trt_engine_gen.py,sha256=hDfIvwCuk4wxHrFbCwn8HZmWyU0YxdymDOyKFfjExPs,726
44
+ mocap_desktop_gui/mc/mc_worker.py,sha256=5eJBnqK4hNlanAF3M8aAv3PlfNG4uQHTVrYcNi3sR7A,726
45
+ mocap_desktop_gui/mc/qml_engine.py,sha256=UCBfFuvjFymVhy8gEbpmNd4w67KMoef86vGABxgqb_A,725
46
+ mocap_desktop_gui/mc/rig/Move_Mo.blend,sha256=rNN1yapGy_ok0rd5BFO7ldkTcNeeROnIrmKa2COA_Ic,29633272
47
+ mocap_desktop_gui/mc/rig/mapping_body.csv,sha256=CaJ9SLWvXNFU44ft-VI9Br4US2hmdLoMh8w8KnXvHHg,551
48
+ mocap_desktop_gui/mc/rig/mapping_fingers.csv,sha256=cy1EX5aJTRjE3dQLe9YsdrGUsxGqPjYupb99fMw_k18,1030
49
+ mocap_desktop_gui/mc/rig/sdc_rig.zip,sha256=hYCBzYFZKuSr15Xs0nql-iD6aLpuTzy-_5o2CyZjiJE,9022411
50
+ mocap_desktop_gui/mc/scene/scene_3d.blend.5a95cd45,sha256=YBmgAeDqATPeJfra3WrblJ3qpn8QfPtbh4W5Elvn0bM,31290788
51
+ mocap_desktop_gui/mc/settings/camera_models.yaml,sha256=cokr4yWMbTTw2X0ObvBIM_j9HWqgBa4QHqSDlF_XpSo,3320
52
+ mocap_desktop_gui/mc/settings/pipeline_log_settings.yaml,sha256=LRUryWBeAI_1ZlU428F2Wqqd_IUWvB2CFv5X0ilBpQM,1622
53
+ mocap_desktop_gui/mc/settings/settings_action.yaml,sha256=lLglwbLCQ2Uzx5CyLCPcADZbnJ6Brc1evcAP_XnEPmw,18134
54
+ mocap_desktop_gui/mc/settings/settings_extrinsic.yaml,sha256=vDTZqkq8n6XfocRjJlolEj0W5sKuC5CpZvLc4KEnkFU,6483
55
+ mocap_desktop_gui/mc/settings/trt_gen_lite.ini,sha256=QavcRCmwmXTeOlO05LWVPjcVg2cZBwJ_A-dnOajyTy8,688
56
+ mocap_desktop_gui/mc/util.py,sha256=WzZq1hh5RLP6Qb6em4GnTJJ_MOjuexuQ6SmLKFcgGOI,726
57
+ mocap_desktop_gui/sample.py,sha256=fPY3uAO1k6vFrh6hNUu9SULpn19WxQq6qZ1HhHdFoRU,724
58
+ mocap_desktop_gui/settings.ini,sha256=5zvMETGa_QWHnRN8eplSc-7_owS-7Ww03Gt_Qx1xBQA,8
59
+ mocap_desktop_gui-0.18.0.dist-info/METADATA,sha256=cN6pOTm9qmm76LsmyHkI07gomAMAMAlgZYKkdacgzx4,1024
60
+ mocap_desktop_gui-0.18.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
61
+ mocap_desktop_gui-0.18.0.dist-info/entry_points.txt,sha256=xMiDqkrscETVFaPjOzROvqLLQqlaurQKY-U4nPckFog,64
62
+ mocap_desktop_gui-0.18.0.dist-info/RECORD,,