mocap-desktop-gui 0.9.1__py3-none-any.whl → 0.10.0__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (56) hide show
  1. mocap_desktop_gui/__init__.py +4 -4
  2. mocap_desktop_gui/axengine_1729786978_3907293431.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 +18 -0
  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 +18 -0
  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/settings/settings_extrinsic.yaml +4 -4
  47. mocap_desktop_gui/mc/util.py +4 -4
  48. mocap_desktop_gui/operations/__init__.py +4 -4
  49. mocap_desktop_gui/sample.py +3 -3
  50. mocap_desktop_gui/utils/__init__.py +4 -4
  51. {mocap_desktop_gui-0.9.1.dist-info → mocap_desktop_gui-0.10.0.dist-info}/METADATA +1 -1
  52. mocap_desktop_gui-0.10.0.dist-info/RECORD +61 -0
  53. mocap_desktop_gui/axengine_1729676417_1470749123.py +0 -246
  54. mocap_desktop_gui-0.9.1.dist-info/RECORD +0 -59
  55. {mocap_desktop_gui-0.9.1.dist-info → mocap_desktop_gui-0.10.0.dist-info}/WHEEL +0 -0
  56. {mocap_desktop_gui-0.9.1.dist-info → mocap_desktop_gui-0.10.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_1729676417_1470749123.py')):
5
+ 'axengine_1729786978_3907293431.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_1729676417_1470749123 as _axengine
12
+ import axengine_1729786978_3907293431 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_1729676417_1470749123 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(299, globals())
17
+ from axengine_1729786978_3907293431 import WupiError, WupiLicenseError, WupiErrorCode
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_1729676417_1470749123.py')):
5
+ 'axengine_1729786978_3907293431.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_1729676417_1470749123 as _axengine
12
+ import axengine_1729786978_3907293431 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_1729676417_1470749123 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(65, globals())
17
+ from axengine_1729786978_3907293431 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(60, globals())
@@ -0,0 +1,18 @@
1
+ import os as _os
2
+ import sys as _sys
3
+ _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
+ while not _os.path.exists(_os.path.join(_axeSearchPath,
5
+ 'axengine_1729786978_3907293431.py')):
6
+ _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
+ if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
+ break
9
+ _axeSearchPath = _newAxeSearchPath
10
+ try:
11
+ _sys.path.append(_axeSearchPath)
12
+ import axengine_1729786978_3907293431 as _axengine
13
+ except Exception as e:
14
+ raise Exception('Failed to load AxEngine!') from e
15
+ finally:
16
+ _sys.path.pop()
17
+ from axengine_1729786978_3907293431 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(288, 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_1729676417_1470749123.py')):
5
+ 'axengine_1729786978_3907293431.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_1729676417_1470749123 as _axengine
12
+ import axengine_1729786978_3907293431 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_1729676417_1470749123 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(185, globals())
17
+ from axengine_1729786978_3907293431 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(181, 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_1729676417_1470749123.py')):
5
+ 'axengine_1729786978_3907293431.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_1729676417_1470749123 as _axengine
12
+ import axengine_1729786978_3907293431 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_1729676417_1470749123 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(76, globals())
17
+ from axengine_1729786978_3907293431 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(71, 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_1729676417_1470749123.py')):
5
+ 'axengine_1729786978_3907293431.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_1729676417_1470749123 as _axengine
12
+ import axengine_1729786978_3907293431 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_1729676417_1470749123 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(354, globals())
17
+ from axengine_1729786978_3907293431 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(366, 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_1729676417_1470749123.py')):
5
+ 'axengine_1729786978_3907293431.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_1729676417_1470749123 as _axengine
12
+ import axengine_1729786978_3907293431 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_1729676417_1470749123 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(416, globals())
17
+ from axengine_1729786978_3907293431 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(428, 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_1729676417_1470749123.py')):
5
+ 'axengine_1729786978_3907293431.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_1729676417_1470749123 as _axengine
12
+ import axengine_1729786978_3907293431 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_1729676417_1470749123 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(289, globals())
17
+ from axengine_1729786978_3907293431 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(285, 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_1729676417_1470749123.py')):
5
+ 'axengine_1729786978_3907293431.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_1729676417_1470749123 as _axengine
12
+ import axengine_1729786978_3907293431 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_1729676417_1470749123 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(434, globals())
17
+ from axengine_1729786978_3907293431 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(444, 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_1729676417_1470749123.py')):
5
+ 'axengine_1729786978_3907293431.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_1729676417_1470749123 as _axengine
12
+ import axengine_1729786978_3907293431 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_1729676417_1470749123 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(272, globals())
17
+ from axengine_1729786978_3907293431 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(268, 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_1729676417_1470749123.py')):
5
+ 'axengine_1729786978_3907293431.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_1729676417_1470749123 as _axengine
12
+ import axengine_1729786978_3907293431 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_1729676417_1470749123 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1729786978_3907293431 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_1729676417_1470749123.py')):
5
+ 'axengine_1729786978_3907293431.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_1729676417_1470749123 as _axengine
12
+ import axengine_1729786978_3907293431 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_1729676417_1470749123 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(379, globals())
17
+ from axengine_1729786978_3907293431 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(391, 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_1729676417_1470749123.py')):
5
+ 'axengine_1729786978_3907293431.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_1729676417_1470749123 as _axengine
12
+ import axengine_1729786978_3907293431 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_1729676417_1470749123 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(419, globals())
17
+ from axengine_1729786978_3907293431 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(431, 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_1729676417_1470749123.py')):
5
+ 'axengine_1729786978_3907293431.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_1729676417_1470749123 as _axengine
12
+ import axengine_1729786978_3907293431 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_1729676417_1470749123 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(68, globals())
17
+ from axengine_1729786978_3907293431 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(63, 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
@@ -48,11 +48,11 @@ ops_cfg:
48
48
  # is calculated automatically in the code based on clapping.
49
49
  delete_input_videos: false
50
50
  inputs:
51
- video_raw_dir: '~/MOX_projects/videos'
51
+ video_raw_dir: '~/MOX_projects_calib/videos'
52
52
  outputs:
53
- log_dir: '~/MOX_projects/log'
54
- video_dir: '~/MOX_projects/videos_processed'
55
- sync_vis_dir: '~/MOX_projects/sync_vis'
53
+ log_dir: '~/MOX_projects_calib/log'
54
+ video_dir: '~/MOX_projects_calib/videos_processed'
55
+ sync_vis_dir: '~/MOX_projects_calib/sync_vis'
56
56
  # Use iphone metadata to sync
57
57
  iphone_sync:
58
58
  use_host_timecode: false
@@ -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_1729676417_1470749123.py')):
5
+ 'axengine_1729786978_3907293431.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_1729676417_1470749123 as _axengine
12
+ import axengine_1729786978_3907293431 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_1729676417_1470749123 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(254, globals())
17
+ from axengine_1729786978_3907293431 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(250, 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_1729676417_1470749123.py')):
5
+ 'axengine_1729786978_3907293431.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_1729676417_1470749123 as _axengine
12
+ import axengine_1729786978_3907293431 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_1729676417_1470749123 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(555, globals())
17
+ from axengine_1729786978_3907293431 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_1729676417_1470749123.py')):
5
+ 'axengine_1729786978_3907293431.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_1729676417_1470749123 as _axengine
12
+ import axengine_1729786978_3907293431 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_1729676417_1470749123 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1729786978_3907293431 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_1729676417_1470749123.py')):
5
+ 'axengine_1729786978_3907293431.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_1729676417_1470749123 as _axengine
12
+ import axengine_1729786978_3907293431 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_1729676417_1470749123 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(566, globals())
17
+ from axengine_1729786978_3907293431 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.1
3
+ Version: 0.10.0
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=F3AsAcceAlQI74EkUq2CuiVoMtX89iJVJ50odlBR8_8,726
2
+ mocap_desktop_gui/axengine_1729786978_3907293431.py,sha256=m9xNlgLb67KSL2vGujyfNnmvK4WcmDJObClX_VTYpZw,422893
3
+ mocap_desktop_gui/gen/rc_icons.py,sha256=a_WkIZQ4C7BEZEpFzRax5BWPf8HdE0LaLcuYM_EvKF4,726
4
+ mocap_desktop_gui/gen/rc_qml.py,sha256=IQLV8OKMiBCnnMF6vDYhI5RLkwwlPbX5MgSoTmt05K0,726
5
+ mocap_desktop_gui/gen/rc_style.py,sha256=E1pDuLS_rX8ESugpGOPpAO-y_N-qhP7kQkdvtSuVo7Q,726
6
+ mocap_desktop_gui/main.py,sha256=O-Nrb_8GbFKf5whllw7FRr01hC8hJ9t7OiysL2xGqA8,724
7
+ mocap_desktop_gui/mc/__init__.py,sha256=U61WJc3EEcg3JRdzkNE2tj3PBeTP4CflmwfM8PfcVM0,726
8
+ mocap_desktop_gui/mc/bld_fbx_2_glb.py,sha256=ECyaWT-GmCZMDEF5M8tVeclQZ02W3K6PtZOOlN6tvxM,726
9
+ mocap_desktop_gui/mc/bld_utils.py,sha256=TQJ1XYi1AbSsY2dNoXVqIIlwFFEWUcZOoA9LfICocgA,726
10
+ mocap_desktop_gui/mc/camera_models.py,sha256=DWeNGFH3KD4sWBAectOy8XqM3D5CVg5pIgLECgDEqBM,726
11
+ mocap_desktop_gui/mc/mc_app_manager.py,sha256=afgjUtkPki4DjxM0NAcYrPKo-S1DErIRoh9pSQRtAOc,726
12
+ mocap_desktop_gui/mc/mc_auth_core.py,sha256=dVS6XK_GpKskOp-M1V5dM7KgXf6RifsqETssEYt3ElI,726
13
+ mocap_desktop_gui/mc/mc_auth_service.py,sha256=RRi04F7UZD-68VlGlbasB2-WlpW54fxYB4Fro_gdzCQ,726
14
+ mocap_desktop_gui/mc/mc_calib.py,sha256=qKIGnapG15N3Ml0OuH26WUtCCIwv_zpVJylLZeUauTU,726
15
+ mocap_desktop_gui/mc/mc_cam_ui_states.py,sha256=4aXyroJ784Rkjw7nZuhsquzb_bFP3zVpzPy2u6pkDCQ,726
16
+ mocap_desktop_gui/mc/mc_cloud_service.py,sha256=No4RlBqKBhFHd5Pj3-hqxGMfi0uJ4ORLpibRFalXMQs,726
17
+ mocap_desktop_gui/mc/mc_common_paths.py,sha256=pgpbU2zSeF5-ukLZz8rVZfNjca8Osj8fw0gkEjughAU,726
18
+ mocap_desktop_gui/mc/mc_context.py,sha256=PLg5-Nw0L3VMgDybPPpxSbIrlXBG5w4sE0sLeuaw2js,726
19
+ mocap_desktop_gui/mc/mc_file_util.py,sha256=inMmBRjWSCu9bZG7Mx8M9lTnAwXwLaPdY9-X312mGO0,726
20
+ mocap_desktop_gui/mc/mc_import_folder.py,sha256=ZCQo1s4-MYD7eUCJrXmZftzimJQCnqfO86m1nQohx0c,726
21
+ mocap_desktop_gui/mc/mc_project.py,sha256=mDScHlkhD91klgr-rH1u92W_eZYrXzft6GTyIFQIyxY,726
22
+ mocap_desktop_gui/mc/mc_project_manager.py,sha256=K0BegwP1hSQTDK4fsXxjQbzOa9Y0y20eQOIWM2tG7n8,725
23
+ mocap_desktop_gui/mc/mc_scene_3d_service.py,sha256=CJU61p9bz3cECVgzAAS_wJRMWiPJ5ySi1GdjEv2hEX0,726
24
+ mocap_desktop_gui/mc/mc_sync_media_player.py,sha256=i-xNquvvmQb23RSrFGGCmuTkpcDTwiL84A5pim8Dxsc,726
25
+ mocap_desktop_gui/mc/mc_sync_video_decoder_service.py,sha256=1NPfXO6XTrXqBqUDWnqD6cnYQsL4cXmK9aiLn3ezl4I,726
26
+ mocap_desktop_gui/mc/mc_sync_video_paint_item.py,sha256=d1WC_UJYDOjhynAU4SZxLoK5kPpH1ybfzC_5lbFnZb4,726
27
+ mocap_desktop_gui/mc/mc_take.py,sha256=hVRkLbQxAWjS1tMuQVie0qB3JZJO8ndFQ5qSzPDj3Ik,726
28
+ mocap_desktop_gui/mc/mc_take_cloud_job.py,sha256=novkgo-5751FL3pB2HJ6HrvvaZatW8yCTgM1QlpRPJ0,726
29
+ mocap_desktop_gui/mc/mc_take_cloud_job_action.py,sha256=u5xSmX41_XzFGozlCQpsbfp_D-6RyFqAXayxgVrKKsQ,726
30
+ mocap_desktop_gui/mc/mc_take_cloud_job_calib.py,sha256=gDD4mC68DVIm2Juy1J6XdBPT7mqrKJY_P8DBre4uqQk,726
31
+ mocap_desktop_gui/mc/mc_take_list_model.py,sha256=Rb5dcUTOxJp3kq6i6DVQkIZ8TnKCYpY3tcngR-71TDM,726
32
+ mocap_desktop_gui/mc/mc_take_local_job.py,sha256=BSkHW1ARJqz0njhhDLrMyfzjI73OJhQL9jYxLnFvnkc,725
33
+ mocap_desktop_gui/mc/mc_take_local_job_service.py,sha256=IyxgOed1_maFyTTMYc7MwwKca-RvdtV-_kUh5otROCg,726
34
+ mocap_desktop_gui/mc/mc_take_run_common.py,sha256=zAcAikH2JUxJHApjWp6-IPzdse-zBZQJvyydXTzC5Co,726
35
+ mocap_desktop_gui/mc/mc_take_run_data_prep.py,sha256=mft0jyP756AvjOX0tBtbjRs6azbTBppIlwSySxdMHI8,725
36
+ mocap_desktop_gui/mc/mc_take_run_settings.py,sha256=gKizfj8tpUeyna3t1QhjLldITxRWpXNDubiAHOU0OT8,726
37
+ mocap_desktop_gui/mc/mc_take_runs_cloud_manager.py,sha256=EkrYhsF3SBo1WRN1d7oXPklW5Zig1jnv93qxyDY-n50,726
38
+ mocap_desktop_gui/mc/mc_take_runs_local_manager.py,sha256=ONLCmDcc0Wi-bTJSEkxCE0SIJCi3Bv6AdYS6m98FsaU,726
39
+ mocap_desktop_gui/mc/mc_take_runs_manager.py,sha256=zk0rvNR39btML_0pOWhiD9gAk1doHXcSdI7RG2pNEFo,726
40
+ mocap_desktop_gui/mc/mc_take_settings.py,sha256=GbffXrMTA0yZGacvhJwYG7FwnW739d_g6ZHD6qF9cYc,726
41
+ mocap_desktop_gui/mc/mc_take_video_model.py,sha256=BTbfquLP-c0YMt3my9yyDxuUtTKJoI0dH5pg4IgaYps,725
42
+ mocap_desktop_gui/mc/mc_task_trt_engine_gen.py,sha256=Vi3hDUM2bPR6BL24kLy5NeNBUcU_h7NGXmse8TEEujw,726
43
+ mocap_desktop_gui/mc/mc_worker.py,sha256=E-kHpvKL2f9Y2JkMkznPTyQgrif_3RUW1-HcIduHLlM,726
44
+ mocap_desktop_gui/mc/qml_engine.py,sha256=o4Hfz64O-EQpK-o8nP-8AsFaZfrA9Vesqs8YHEKyLmM,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=8Pemb_qgey64nhXDNgS_nPBE1NjS4mrTkEEdsx8TcE8,726
54
+ mocap_desktop_gui/operations/__init__.py,sha256=7j_q-gGlwiO1VZ6wk0AiP4hLy2VPjxIRUfv4u7sZM58,726
55
+ mocap_desktop_gui/sample.py,sha256=of-MKioixJMwxbctpBRPm9dkjuv3G1v9ehbLWeqBmzE,724
56
+ mocap_desktop_gui/settings.ini,sha256=kBwDIpL74uLZhID3_yaECygFKftAyevRrN7PRcjpVvc,131
57
+ mocap_desktop_gui/utils/__init__.py,sha256=YwPmla-3Hhng9FkA0b3TfecpCr6iz70YZ-2EUjBqh6Y,726
58
+ mocap_desktop_gui-0.10.0.dist-info/METADATA,sha256=ouwxfS0QeKy0KBEGh8bEu3CIfMW_frMYrH6ZNHuI70M,1024
59
+ mocap_desktop_gui-0.10.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
60
+ mocap_desktop_gui-0.10.0.dist-info/entry_points.txt,sha256=xMiDqkrscETVFaPjOzROvqLLQqlaurQKY-U4nPckFog,64
61
+ mocap_desktop_gui-0.10.0.dist-info/RECORD,,