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

Sign up to get free protection for your applications and to get access to all the features.
Files changed (54) hide show
  1. mocap_desktop_gui/__init__.py +4 -4
  2. mocap_desktop_gui/axengine_1729676417_1470749123.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/camera_models.py +4 -4
  10. mocap_desktop_gui/mc/mc_app_manager.py +4 -4
  11. mocap_desktop_gui/mc/mc_auth_core.py +4 -4
  12. mocap_desktop_gui/mc/mc_auth_service.py +4 -4
  13. mocap_desktop_gui/mc/mc_calib.py +4 -4
  14. mocap_desktop_gui/mc/mc_cam_ui_states.py +4 -4
  15. mocap_desktop_gui/mc/mc_cloud_service.py +4 -4
  16. mocap_desktop_gui/mc/mc_common_paths.py +4 -4
  17. mocap_desktop_gui/mc/mc_context.py +4 -4
  18. mocap_desktop_gui/mc/mc_file_util.py +4 -4
  19. mocap_desktop_gui/mc/mc_import_folder.py +4 -4
  20. mocap_desktop_gui/mc/mc_project.py +4 -4
  21. mocap_desktop_gui/mc/mc_project_manager.py +4 -4
  22. mocap_desktop_gui/mc/mc_scene_3d_service.py +18 -0
  23. mocap_desktop_gui/mc/mc_sync_media_player.py +4 -4
  24. mocap_desktop_gui/mc/mc_sync_video_decoder_service.py +4 -4
  25. mocap_desktop_gui/mc/mc_sync_video_paint_item.py +4 -4
  26. mocap_desktop_gui/mc/mc_take.py +4 -4
  27. mocap_desktop_gui/mc/mc_take_cloud_job.py +4 -4
  28. mocap_desktop_gui/mc/mc_take_cloud_job_action.py +4 -4
  29. mocap_desktop_gui/mc/mc_take_cloud_job_calib.py +4 -4
  30. mocap_desktop_gui/mc/mc_take_list_model.py +4 -4
  31. mocap_desktop_gui/mc/mc_take_local_job.py +4 -4
  32. mocap_desktop_gui/mc/mc_take_run_common.py +4 -4
  33. mocap_desktop_gui/mc/mc_take_run_data_prep.py +4 -4
  34. mocap_desktop_gui/mc/mc_take_run_settings.py +4 -4
  35. mocap_desktop_gui/mc/mc_take_runs_cloud_manager.py +4 -4
  36. mocap_desktop_gui/mc/mc_take_runs_local_manager.py +4 -4
  37. mocap_desktop_gui/mc/mc_take_runs_manager.py +4 -4
  38. mocap_desktop_gui/mc/mc_take_settings.py +4 -4
  39. mocap_desktop_gui/mc/mc_take_video_model.py +3 -3
  40. mocap_desktop_gui/mc/mc_task_trt_engine_gen.py +4 -4
  41. mocap_desktop_gui/mc/mc_worker.py +4 -4
  42. mocap_desktop_gui/mc/qml_engine.py +4 -4
  43. mocap_desktop_gui/mc/settings/settings_action.yaml +3 -3
  44. mocap_desktop_gui/mc/settings/settings_extrinsic.yaml +8 -7
  45. mocap_desktop_gui/mc/util.py +4 -4
  46. mocap_desktop_gui/operations/__init__.py +4 -4
  47. mocap_desktop_gui/sample.py +3 -3
  48. mocap_desktop_gui/utils/__init__.py +4 -4
  49. {mocap_desktop_gui-0.8.2.dist-info → mocap_desktop_gui-0.9.1.dist-info}/METADATA +1 -1
  50. mocap_desktop_gui-0.9.1.dist-info/RECORD +59 -0
  51. mocap_desktop_gui/axengine_1729541234_533108441.py +0 -246
  52. mocap_desktop_gui-0.8.2.dist-info/RECORD +0 -58
  53. {mocap_desktop_gui-0.8.2.dist-info → mocap_desktop_gui-0.9.1.dist-info}/WHEEL +0 -0
  54. {mocap_desktop_gui-0.8.2.dist-info → mocap_desktop_gui-0.9.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_1729541234_533108441.py')):
5
+ 'axengine_1729676417_1470749123.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_1729541234_533108441 as _axengine
12
+ import axengine_1729676417_1470749123 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_1729541234_533108441 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(68, globals())
17
+ from axengine_1729676417_1470749123 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_1729541234_533108441.py')):
5
+ 'axengine_1729676417_1470749123.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_1729541234_533108441 as _axengine
12
+ import axengine_1729676417_1470749123 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_1729541234_533108441 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(188, globals())
17
+ from axengine_1729676417_1470749123 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(185, 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_1729541234_533108441.py')):
5
+ 'axengine_1729676417_1470749123.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_1729541234_533108441 as _axengine
12
+ import axengine_1729676417_1470749123 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_1729541234_533108441 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(79, globals())
17
+ from axengine_1729676417_1470749123 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(76, 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_1729541234_533108441.py')):
5
+ 'axengine_1729676417_1470749123.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_1729541234_533108441 as _axengine
12
+ import axengine_1729676417_1470749123 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_1729541234_533108441 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(357, globals())
17
+ from axengine_1729676417_1470749123 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(354, 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_1729541234_533108441.py')):
5
+ 'axengine_1729676417_1470749123.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_1729541234_533108441 as _axengine
12
+ import axengine_1729676417_1470749123 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_1729541234_533108441 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(419, globals())
17
+ from axengine_1729676417_1470749123 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(416, 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_1729541234_533108441.py')):
5
+ 'axengine_1729676417_1470749123.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_1729541234_533108441 as _axengine
12
+ import axengine_1729676417_1470749123 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_1729541234_533108441 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(292, globals())
17
+ from axengine_1729676417_1470749123 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(289, 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_1729541234_533108441.py')):
5
+ 'axengine_1729676417_1470749123.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_1729541234_533108441 as _axengine
12
+ import axengine_1729676417_1470749123 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_1729541234_533108441 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(437, globals())
17
+ from axengine_1729676417_1470749123 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(434, 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_1729541234_533108441.py')):
5
+ 'axengine_1729676417_1470749123.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_1729541234_533108441 as _axengine
12
+ import axengine_1729676417_1470749123 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_1729541234_533108441 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(275, globals())
17
+ from axengine_1729676417_1470749123 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(272, 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_1729541234_533108441.py')):
5
+ 'axengine_1729676417_1470749123.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_1729541234_533108441 as _axengine
12
+ import axengine_1729676417_1470749123 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_1729541234_533108441 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1729676417_1470749123 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_1729541234_533108441.py')):
5
+ 'axengine_1729676417_1470749123.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_1729541234_533108441 as _axengine
12
+ import axengine_1729676417_1470749123 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_1729541234_533108441 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(382, globals())
17
+ from axengine_1729676417_1470749123 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(379, 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_1729541234_533108441.py')):
5
+ 'axengine_1729676417_1470749123.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_1729541234_533108441 as _axengine
12
+ import axengine_1729676417_1470749123 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_1729541234_533108441 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(422, globals())
17
+ from axengine_1729676417_1470749123 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(419, 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_1729541234_533108441.py')):
5
+ 'axengine_1729676417_1470749123.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_1729541234_533108441 as _axengine
12
+ import axengine_1729676417_1470749123 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_1729541234_533108441 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(71, globals())
17
+ from axengine_1729676417_1470749123 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(68, globals())
@@ -70,9 +70,9 @@ ops_cfg:
70
70
  # warning: 'ss' and 'to' must be specified on the video whose lag is smallest; otherwise, it could fail
71
71
  # for the case when the lag between videos are large.
72
72
  # example. action_start_time: '20.15' action_end_time: '30.35' means action stats from the seconds 20.15 to 30.35
73
- action_start_time: 5 # start time of the action in format seconds.millisecond. ffmpeg -ss
74
- action_end_time: 20 # end time of the action in the format seconds.millisecond. ffmpeg -to
75
- search_win: [3.0, 5.0] # clap hand time range, in seconds. If no range is specified then search_win
73
+ action_start_time: 0 # start time of the action in format seconds.millisecond. ffmpeg -ss
74
+ action_end_time: "" # end time of the action in the format seconds.millisecond. ffmpeg -to
75
+ search_win: [2.0, 6.0] # clap hand time range, in seconds. If no range is specified then search_win
76
76
  # is calculated automatically in the code based on clapping.
77
77
  delete_input_videos: false
78
78
  inputs:
@@ -42,17 +42,17 @@ ops_cfg:
42
42
  # warning: 'ss' and 'to' must be specified on the video whose lag is smallest; otherwise, it could fail
43
43
  # for the case when the lag between videos are large.
44
44
  # example. action_start_time: '20.15' action_end_time: '30.35' means action stats from the seconds 20.15 to 30.35
45
- action_start_time: 5 # start time of the action in format seconds.millisecond. ffmpeg -ss
46
- action_end_time: 20 # end time of the action in the format seconds.millisecond. ffmpeg -to
47
- search_win: [3.0, 5.0] # clap hand time range, in seconds. If no range is specified then search_win
45
+ action_start_time: 0 # start time of the action in format seconds.millisecond. ffmpeg -ss
46
+ action_end_time: "" # end time of the action in the format seconds.millisecond. ffmpeg -to
47
+ search_win: [2.0, 6.0] # clap hand time range, in seconds. If no range is specified then search_win
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_calib/videos'
51
+ video_raw_dir: '~/MOX_projects/videos'
52
52
  outputs:
53
- log_dir: '~/MOX_projects_calib/log'
54
- video_dir: '~/MOX_projects_calib/videos_processed'
55
- sync_vis_dir: '~/MOX_projects_calib/sync_vis'
53
+ log_dir: '~/MOX_projects/log'
54
+ video_dir: '~/MOX_projects/videos_processed'
55
+ sync_vis_dir: '~/MOX_projects/sync_vis'
56
56
  # Use iphone metadata to sync
57
57
  iphone_sync:
58
58
  use_host_timecode: false
@@ -74,6 +74,7 @@ ops_cfg:
74
74
  use_audio_files: false
75
75
  timecode: false
76
76
 
77
+
77
78
  OpsTrackingCalib:
78
79
  enable_vis_debug: true # expensive video debugging
79
80
  vis_debug_rate_ms: 1000 # one frame every 1000ms
@@ -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_1729541234_533108441.py')):
5
+ 'axengine_1729676417_1470749123.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_1729541234_533108441 as _axengine
12
+ import axengine_1729676417_1470749123 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_1729541234_533108441 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(257, globals())
17
+ from axengine_1729676417_1470749123 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(254, 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_1729541234_533108441.py')):
5
+ 'axengine_1729676417_1470749123.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_1729541234_533108441 as _axengine
12
+ import axengine_1729676417_1470749123 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_1729541234_533108441 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(549, globals())
17
+ from axengine_1729676417_1470749123 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(555, 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_1729541234_533108441.py')):
5
+ 'axengine_1729676417_1470749123.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_1729541234_533108441 as _axengine
12
+ import axengine_1729676417_1470749123 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_1729541234_533108441 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1729676417_1470749123 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_1729541234_533108441.py')):
5
+ 'axengine_1729676417_1470749123.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_1729541234_533108441 as _axengine
12
+ import axengine_1729676417_1470749123 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_1729541234_533108441 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(560, globals())
17
+ from axengine_1729676417_1470749123 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(566, globals())
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mocap-desktop-gui
3
- Version: 0.8.2
3
+ Version: 0.9.1
4
4
  Summary:
5
5
  Author: Move.ai
6
6
  Requires-Python: >=3.10,<3.13
@@ -0,0 +1,59 @@
1
+ mocap_desktop_gui/__init__.py,sha256=vuGZtt8k2kQzbLo_iQ0TVl5dcy22vIpvresKsmNi-S0,726
2
+ mocap_desktop_gui/axengine_1729676417_1470749123.py,sha256=vwmJmBFi8CAT411sWTL-MWlKjyIbbu85OpysZNlEgFE,418393
3
+ mocap_desktop_gui/gen/rc_icons.py,sha256=BGum1mhiqX19L8CgFkTPUn3mHZitpwa-UnZQeCb_L60,726
4
+ mocap_desktop_gui/gen/rc_qml.py,sha256=mXWNj5WxEj1mKqwcASyfCr-pO_oMBrOqVNEbgBnEbac,726
5
+ mocap_desktop_gui/gen/rc_style.py,sha256=Tp0-D0MWAc6z_EvO44d8HqsVvfuavYIGuQLpxF1qi6M,726
6
+ mocap_desktop_gui/main.py,sha256=JOtocaoT7t4uQdWmaI_lWgdqY9hTVz159YSAXIMM_eg,724
7
+ mocap_desktop_gui/mc/__init__.py,sha256=CFBfcBIpVmkWKIcerG5QWtQGKu6QCyVDiV9XbpEmhWc,726
8
+ mocap_desktop_gui/mc/bld_fbx_2_glb.py,sha256=qFBxISehwAve1-NlXDhSRWQNRqW0CchNJPRD81p63Ng,726
9
+ mocap_desktop_gui/mc/camera_models.py,sha256=aVigwTWYoHt4OhqAN2K39ci7ZBT0I9XfjP5ej848eH0,726
10
+ mocap_desktop_gui/mc/mc_app_manager.py,sha256=SVHr-PUKY4HhzITV0Y9YzMEKerTDmyyjdqeRmJ7Hah8,726
11
+ mocap_desktop_gui/mc/mc_auth_core.py,sha256=NbvCwQ2n15eiBBOKbDg8YLX9bArFLV_G1bvdaYhxbMU,726
12
+ mocap_desktop_gui/mc/mc_auth_service.py,sha256=KBVYWXmXaJKx9mnXqYOXH1Ro7LRaVnoEdHXhVFYE0R0,726
13
+ mocap_desktop_gui/mc/mc_calib.py,sha256=FZRgg5vLlxvIsISPZA2JCi-mSHiHgXHhguJZXJreU6k,726
14
+ mocap_desktop_gui/mc/mc_cam_ui_states.py,sha256=BMl-VVHhLbJ9Hbh0O6fmTruRsjnsHFhESVANNl7aaq4,726
15
+ mocap_desktop_gui/mc/mc_cloud_service.py,sha256=bLXRUl0V7ChApx4fQJyaFos_Q1n1xVrxCeXBz_sCNiQ,726
16
+ mocap_desktop_gui/mc/mc_common_paths.py,sha256=qdGsIL0DzM20d4GmRZDfand3ArNZfVoQyah_ozykS5g,726
17
+ mocap_desktop_gui/mc/mc_context.py,sha256=2qpOlOSpAGm-HKEvIAau2iyHbeohr_7mhv7Z8XWnbVg,726
18
+ mocap_desktop_gui/mc/mc_file_util.py,sha256=EI7XZSbFiyI_xLIMF43i1-4acQaGeTCPa69ijSqY6jo,726
19
+ mocap_desktop_gui/mc/mc_import_folder.py,sha256=esfhjxjgbcF9L5Bzn8wGGgmu31ziC_OHEqS3hfyjqCE,726
20
+ mocap_desktop_gui/mc/mc_project.py,sha256=ojyFji6ypNVRk5RFlrOIJN_xOdnOy_Ac7Lqt5G7RK-E,726
21
+ mocap_desktop_gui/mc/mc_project_manager.py,sha256=d1DRF_gFKUNtGzeeedidFylILCdHyigm-y_eAKbvHC8,725
22
+ mocap_desktop_gui/mc/mc_scene_3d_service.py,sha256=yV4Pj4Afs8f5mD0_jxdMNX6hJHPcAZPZiKZqgQoOtTA,726
23
+ mocap_desktop_gui/mc/mc_sync_media_player.py,sha256=EMgEeY9DE1J8zB9vfi60H6heJFJz3UDC1yAG3IsLkUU,726
24
+ mocap_desktop_gui/mc/mc_sync_video_decoder_service.py,sha256=yaBaix_7MkqwtTQn6xW5iNv58sUhE3xeo_BOlU7Aagk,726
25
+ mocap_desktop_gui/mc/mc_sync_video_paint_item.py,sha256=3bBMg-ACorNZyY2VAvKIj2K9mcksrArtx9FSxppJccU,726
26
+ mocap_desktop_gui/mc/mc_take.py,sha256=cicdrtl1bZe14cEbf3VeZoqlFYphoe-rWPnR80YUFBY,726
27
+ mocap_desktop_gui/mc/mc_take_cloud_job.py,sha256=lPUwnLpJLK19ow1wE4oh5mIup0rbcfzEBWl-fFCHS50,726
28
+ mocap_desktop_gui/mc/mc_take_cloud_job_action.py,sha256=2AmPSlEerRVJG9aM7lhhl-lLRr66UmYsNugZZ8XwGg8,726
29
+ mocap_desktop_gui/mc/mc_take_cloud_job_calib.py,sha256=KPEUDOVXwIAN-vd0cfd4YHYjlGeF3U48g3cJgufAUao,726
30
+ mocap_desktop_gui/mc/mc_take_list_model.py,sha256=fnKzF407Ls5i3RHilwiZxg5qybBLRfcG4yJig6n__V0,726
31
+ mocap_desktop_gui/mc/mc_take_local_job.py,sha256=F8o5r6mAV3oKPqugeLPOpmJIjfyuKqjIiDMfdDQ1cuI,725
32
+ mocap_desktop_gui/mc/mc_take_run_common.py,sha256=IKWUJMA-LtTsnX-MHbaAY13N04dE7OvOTzIyklMXyxw,726
33
+ mocap_desktop_gui/mc/mc_take_run_data_prep.py,sha256=KLa85S73_SHYyhQmHHleeBYvNViN-z4H9yLXNW6Q2ic,725
34
+ mocap_desktop_gui/mc/mc_take_run_settings.py,sha256=RmuYEjKe2L0XJ2c-7uq4UsL521TLO86-aM2HioA1xaY,726
35
+ mocap_desktop_gui/mc/mc_take_runs_cloud_manager.py,sha256=33UbPcomVgqKceCkl8no6yZEibaDnOLeyIBJ58vvkmg,726
36
+ mocap_desktop_gui/mc/mc_take_runs_local_manager.py,sha256=6w4HDpe26LEBwjeVo30Ma09BdYsMO-rfaX0NTL5-2kw,726
37
+ mocap_desktop_gui/mc/mc_take_runs_manager.py,sha256=KYjAQM4cy1DNxsyyucIrcjTezrM1FQp6mrw3v64cDS8,726
38
+ mocap_desktop_gui/mc/mc_take_settings.py,sha256=uCvkhefHGhMumgHiGJeTlVnppMv1GaaJf8UtSoTU9zQ,726
39
+ mocap_desktop_gui/mc/mc_take_video_model.py,sha256=8FuGIcNqq26b0Rr2I8NM9IFXskP_zakFtUf5EGfSp9Y,725
40
+ mocap_desktop_gui/mc/mc_task_trt_engine_gen.py,sha256=teH4iOE5ruEjWZ9q68mvDm7HUwq2vzqeNBsAqrpAOKs,726
41
+ mocap_desktop_gui/mc/mc_worker.py,sha256=csgpq52GvQKkMSv6NYQw7yEJ77LXMzXVua2M-3PwE9o,726
42
+ mocap_desktop_gui/mc/qml_engine.py,sha256=u34j0kk4QBv-KHGk44iBWjaZX2IRAYcTP2HAh2XsP9A,725
43
+ mocap_desktop_gui/mc/rig/Move_Mo.blend,sha256=rNN1yapGy_ok0rd5BFO7ldkTcNeeROnIrmKa2COA_Ic,29633272
44
+ mocap_desktop_gui/mc/rig/mapping_body.csv,sha256=CaJ9SLWvXNFU44ft-VI9Br4US2hmdLoMh8w8KnXvHHg,551
45
+ mocap_desktop_gui/mc/rig/mapping_fingers.csv,sha256=cy1EX5aJTRjE3dQLe9YsdrGUsxGqPjYupb99fMw_k18,1030
46
+ mocap_desktop_gui/mc/rig/sdc_rig.zip,sha256=hYCBzYFZKuSr15Xs0nql-iD6aLpuTzy-_5o2CyZjiJE,9022411
47
+ mocap_desktop_gui/mc/scene/scene_3d.blend.5a95cd45,sha256=YBmgAeDqATPeJfra3WrblJ3qpn8QfPtbh4W5Elvn0bM,31290788
48
+ mocap_desktop_gui/mc/settings/camera_models.yaml,sha256=cokr4yWMbTTw2X0ObvBIM_j9HWqgBa4QHqSDlF_XpSo,3320
49
+ mocap_desktop_gui/mc/settings/settings_action.yaml,sha256=Csx_76m9rXaowaAujllyxFnC9EIoSCJtkxmG-fqK0xM,18132
50
+ mocap_desktop_gui/mc/settings/settings_extrinsic.yaml,sha256=vIOwANvJTqrh7EiSE_J5le8wGefk5mac_gQshW681L0,6459
51
+ mocap_desktop_gui/mc/util.py,sha256=bObX6QOSgfTf-wPmptV1VJZFinCyBy6mxe13YZ-Av_Q,726
52
+ mocap_desktop_gui/operations/__init__.py,sha256=F8ez10wckW4L2DdVLGjfoyzcY437iC9U083uZgi_yQw,726
53
+ mocap_desktop_gui/sample.py,sha256=-37h_Z2N2ncJ_1Xd8Px8oEOf6f0AGifysuQqELTzqcc,724
54
+ mocap_desktop_gui/settings.ini,sha256=kBwDIpL74uLZhID3_yaECygFKftAyevRrN7PRcjpVvc,131
55
+ mocap_desktop_gui/utils/__init__.py,sha256=tTHQZ8q7h30DlegiJ8eABGlyQYzBwemu4OHUdE2nxug,726
56
+ mocap_desktop_gui-0.9.1.dist-info/METADATA,sha256=0WT8eTG19M0AEe-JbFiVY1dWoCAz8cgMxErJpkBa26U,1023
57
+ mocap_desktop_gui-0.9.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
58
+ mocap_desktop_gui-0.9.1.dist-info/entry_points.txt,sha256=xMiDqkrscETVFaPjOzROvqLLQqlaurQKY-U4nPckFog,64
59
+ mocap_desktop_gui-0.9.1.dist-info/RECORD,,