mocap-desktop-gui 0.15.1__py3-none-any.whl → 0.16.1__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- mocap_desktop_gui/__init__.py +4 -4
- mocap_desktop_gui/axengine_1731334413_1998855010.py +246 -0
- mocap_desktop_gui/gen/rc_icons.py +4 -4
- mocap_desktop_gui/gen/rc_qml.py +4 -4
- mocap_desktop_gui/gen/rc_style.py +4 -4
- mocap_desktop_gui/main.py +3 -3
- mocap_desktop_gui/mc/__init__.py +4 -4
- mocap_desktop_gui/mc/bld_fbx_2_glb.py +4 -4
- mocap_desktop_gui/mc/bld_utils.py +4 -4
- mocap_desktop_gui/mc/camera_models.py +4 -4
- mocap_desktop_gui/mc/mc_app_manager.py +4 -4
- mocap_desktop_gui/mc/mc_auth_core.py +4 -4
- mocap_desktop_gui/mc/mc_auth_service.py +4 -4
- mocap_desktop_gui/mc/mc_calib.py +4 -4
- mocap_desktop_gui/mc/mc_cam_ui_states.py +4 -4
- mocap_desktop_gui/mc/mc_cloud_service.py +4 -4
- mocap_desktop_gui/mc/mc_common_paths.py +4 -4
- mocap_desktop_gui/mc/mc_context.py +4 -4
- mocap_desktop_gui/mc/mc_file_util.py +4 -4
- mocap_desktop_gui/mc/mc_import_folder.py +4 -4
- mocap_desktop_gui/mc/mc_project.py +4 -4
- mocap_desktop_gui/mc/mc_project_manager.py +4 -4
- mocap_desktop_gui/mc/mc_scene_3d_service.py +4 -4
- mocap_desktop_gui/mc/mc_sync_media_player.py +4 -4
- mocap_desktop_gui/mc/mc_sync_video_decoder_service.py +4 -4
- mocap_desktop_gui/mc/mc_sync_video_paint_item.py +4 -4
- mocap_desktop_gui/mc/mc_take.py +4 -4
- mocap_desktop_gui/mc/mc_take_cloud_job.py +4 -4
- mocap_desktop_gui/mc/mc_take_cloud_job_action.py +4 -4
- mocap_desktop_gui/mc/mc_take_cloud_job_calib.py +4 -4
- mocap_desktop_gui/mc/mc_take_list_model.py +4 -4
- mocap_desktop_gui/mc/mc_take_local_job.py +4 -4
- mocap_desktop_gui/mc/mc_take_local_job_service.py +4 -4
- mocap_desktop_gui/mc/mc_take_run_common.py +4 -4
- mocap_desktop_gui/mc/mc_take_run_data_prep.py +4 -4
- mocap_desktop_gui/mc/mc_take_run_settings.py +4 -4
- mocap_desktop_gui/mc/mc_take_runs_cloud_manager.py +4 -4
- mocap_desktop_gui/mc/mc_take_runs_local_manager.py +4 -4
- mocap_desktop_gui/mc/mc_take_runs_manager.py +4 -4
- mocap_desktop_gui/mc/mc_take_settings.py +4 -4
- mocap_desktop_gui/mc/mc_take_video_model.py +4 -4
- mocap_desktop_gui/mc/mc_task_trt_engine_gen.py +4 -4
- mocap_desktop_gui/mc/mc_worker.py +4 -4
- mocap_desktop_gui/mc/qml_engine.py +4 -4
- mocap_desktop_gui/mc/util.py +4 -4
- mocap_desktop_gui/sample.py +3 -3
- {mocap_desktop_gui-0.15.1.dist-info → mocap_desktop_gui-0.16.1.dist-info}/METADATA +1 -1
- mocap_desktop_gui-0.16.1.dist-info/RECORD +59 -0
- mocap_desktop_gui/axengine_1730977077_1117070786.py +0 -246
- mocap_desktop_gui-0.15.1.dist-info/RECORD +0 -59
- {mocap_desktop_gui-0.15.1.dist-info → mocap_desktop_gui-0.16.1.dist-info}/WHEEL +0 -0
- {mocap_desktop_gui-0.15.1.dist-info → mocap_desktop_gui-0.16.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
|
-
'
|
5
|
+
'axengine_1731334413_1998855010.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
|
12
|
+
import axengine_1731334413_1998855010 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
|
18
|
-
_axengine._axe_run(
|
17
|
+
from axengine_1731334413_1998855010 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(307, 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
|
-
'
|
5
|
+
'axengine_1731334413_1998855010.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
|
12
|
+
import axengine_1731334413_1998855010 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
|
18
|
-
_axengine._axe_run(
|
17
|
+
from axengine_1731334413_1998855010 import WupiError, WupiLicenseError, WupiErrorCode
|
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
|
-
'
|
5
|
+
'axengine_1731334413_1998855010.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
|
12
|
+
import axengine_1731334413_1998855010 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
|
18
|
-
_axengine._axe_run(
|
17
|
+
from axengine_1731334413_1998855010 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(295, 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
|
-
'
|
5
|
+
'axengine_1731334413_1998855010.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
|
12
|
+
import axengine_1731334413_1998855010 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
|
18
|
-
_axengine._axe_run(
|
17
|
+
from axengine_1731334413_1998855010 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(187, 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
|
-
'
|
5
|
+
'axengine_1731334413_1998855010.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
|
12
|
+
import axengine_1731334413_1998855010 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
|
18
|
-
_axengine._axe_run(
|
17
|
+
from axengine_1731334413_1998855010 import WupiError, WupiLicenseError, WupiErrorCode
|
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
|
-
'
|
5
|
+
'axengine_1731334413_1998855010.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
|
12
|
+
import axengine_1731334413_1998855010 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
|
18
|
-
_axengine._axe_run(
|
17
|
+
from axengine_1731334413_1998855010 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(378, 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
|
-
'
|
5
|
+
'axengine_1731334413_1998855010.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
|
12
|
+
import axengine_1731334413_1998855010 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
|
18
|
-
_axengine._axe_run(
|
17
|
+
from axengine_1731334413_1998855010 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(440, 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
|
-
'
|
5
|
+
'axengine_1731334413_1998855010.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
|
12
|
+
import axengine_1731334413_1998855010 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
|
18
|
-
_axengine._axe_run(
|
17
|
+
from axengine_1731334413_1998855010 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(292, 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
|
-
'
|
5
|
+
'axengine_1731334413_1998855010.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
|
12
|
+
import axengine_1731334413_1998855010 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
|
18
|
-
_axengine._axe_run(
|
17
|
+
from axengine_1731334413_1998855010 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(456, 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
|
-
'
|
5
|
+
'axengine_1731334413_1998855010.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
|
12
|
+
import axengine_1731334413_1998855010 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
|
18
|
-
_axengine._axe_run(
|
17
|
+
from axengine_1731334413_1998855010 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(275, 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
|
-
'
|
5
|
+
'axengine_1731334413_1998855010.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
|
12
|
+
import axengine_1731334413_1998855010 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
|
18
|
-
_axengine._axe_run(
|
17
|
+
from axengine_1731334413_1998855010 import WupiError, WupiLicenseError, WupiErrorCode
|
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
|
-
'
|
5
|
+
'axengine_1731334413_1998855010.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
|
12
|
+
import axengine_1731334413_1998855010 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
|
18
|
-
_axengine._axe_run(
|
17
|
+
from axengine_1731334413_1998855010 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(403, globals())
|
@@ -2,17 +2,17 @@ import os as _os
|
|
2
2
|
import sys as _sys
|
3
3
|
_axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
|
4
4
|
while not _os.path.exists(_os.path.join(_axeSearchPath,
|
5
|
-
'
|
5
|
+
'axengine_1731334413_1998855010.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
|
12
|
+
import axengine_1731334413_1998855010 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
|
18
|
-
_axengine._axe_run(
|
17
|
+
from axengine_1731334413_1998855010 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
|
-
'
|
5
|
+
'axengine_1731334413_1998855010.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
|
12
|
+
import axengine_1731334413_1998855010 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
|
18
|
-
_axengine._axe_run(
|
17
|
+
from axengine_1731334413_1998855010 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(61, globals())
|
mocap_desktop_gui/mc/util.py
CHANGED
@@ -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
|
-
'
|
5
|
+
'axengine_1731334413_1998855010.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
|
12
|
+
import axengine_1731334413_1998855010 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
|
18
|
-
_axengine._axe_run(
|
17
|
+
from axengine_1731334413_1998855010 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(257, globals())
|
mocap_desktop_gui/sample.py
CHANGED
@@ -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
|
-
'
|
5
|
+
'axengine_1731334413_1998855010.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
|
12
|
+
import axengine_1731334413_1998855010 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
|
17
|
+
from axengine_1731334413_1998855010 import WupiError, WupiLicenseError, WupiErrorCode
|
18
18
|
_axengine._axe_run(6, globals())
|
@@ -0,0 +1,59 @@
|
|
1
|
+
mocap_desktop_gui/__init__.py,sha256=fy-cnRNw_sPaAhmZcmM1AnLMQ0kF4DGzzhTi76i2lTM,726
|
2
|
+
mocap_desktop_gui/axengine_1731334413_1998855010.py,sha256=aVfdJsiuQcXSWfY4_EpwOF3RRFHyLk5QfXJ6sxY7ZNE,437133
|
3
|
+
mocap_desktop_gui/gen/rc_icons.py,sha256=Tv6KcfxunWmY24TBgK5RoDJ3ERgSMdFIEVgIka7n5d0,726
|
4
|
+
mocap_desktop_gui/gen/rc_qml.py,sha256=dEUKfqx9KGxsDG7DmQgtWVJIz2i-2YvG205oU_H_eHw,726
|
5
|
+
mocap_desktop_gui/gen/rc_style.py,sha256=-6Dt4ZswrKu_mf7FmOnytHE08WqLWufMafq4P0DoGPo,726
|
6
|
+
mocap_desktop_gui/main.py,sha256=CfULko09prVXpjr8lUJQp4AM2C9n0g1P7d2LUk3BKqw,724
|
7
|
+
mocap_desktop_gui/mc/__init__.py,sha256=nnpUHmlMZZ0mBfsCFNW0vvNYgYPDCBxdTvS2EGDp1BM,726
|
8
|
+
mocap_desktop_gui/mc/bld_fbx_2_glb.py,sha256=iwk4zysnUXj8quVjzDesroQCxaPTUxnWfaRVg-tXMSU,726
|
9
|
+
mocap_desktop_gui/mc/bld_utils.py,sha256=cVafFB-h3wi6ym-qXXNaWhrNTizOjgBj1j1V_Oe6mjQ,726
|
10
|
+
mocap_desktop_gui/mc/camera_models.py,sha256=9vpo-6DvnDOKGh4qrdQItwvSQ-16NpXfU0hkv164W1A,726
|
11
|
+
mocap_desktop_gui/mc/mc_app_manager.py,sha256=PMr0ihQCEqmYtAPftIF10yRrqu0cecdrQASVCftESYE,726
|
12
|
+
mocap_desktop_gui/mc/mc_auth_core.py,sha256=y2XX89jgWlVZgY-SH-fpUzLfAmVtrgw6EoWPpkEmawo,726
|
13
|
+
mocap_desktop_gui/mc/mc_auth_service.py,sha256=EoQQvK6HL0SylZYeakLDluAe9uGCs0sYS25-ZMHZ2C4,726
|
14
|
+
mocap_desktop_gui/mc/mc_calib.py,sha256=mVT4lUrsVHfY_GqLlWj6yZ_Zm4c3qlM3F-DBX89_C6A,726
|
15
|
+
mocap_desktop_gui/mc/mc_cam_ui_states.py,sha256=A8_pgBHkvctJWFnJrUCJJJq9WbbCxk5-rgUMc7ScupI,726
|
16
|
+
mocap_desktop_gui/mc/mc_cloud_service.py,sha256=Rlzq0LB8GlzcNjhNGUdqaJjP9Gb5NZXvKizUPjcilj0,726
|
17
|
+
mocap_desktop_gui/mc/mc_common_paths.py,sha256=d6oKvUGNM361YAdMHT69gcd2tVfsafpy4L7oitRH_nY,726
|
18
|
+
mocap_desktop_gui/mc/mc_context.py,sha256=gTQdLeRidSibUt2wA-cmLfkMPHmwSip5CBcjr4mU88s,726
|
19
|
+
mocap_desktop_gui/mc/mc_file_util.py,sha256=tmcyd65R_WurtYJPGEo_TxRilUc5-QawfG3FK2qiwzo,726
|
20
|
+
mocap_desktop_gui/mc/mc_import_folder.py,sha256=53fQFBEmNQ_xCbwjRjFmFj1qFIGedlcZT8WjoLMQbAc,726
|
21
|
+
mocap_desktop_gui/mc/mc_project.py,sha256=0IzsSPmOVkIN0f6OS__3Br_8cMLgLxmxbrnnNXF8E3I,726
|
22
|
+
mocap_desktop_gui/mc/mc_project_manager.py,sha256=9FpncA4YS53UPotnb-VQI96eC1MdVvj9MKTwkHh2HmI,725
|
23
|
+
mocap_desktop_gui/mc/mc_scene_3d_service.py,sha256=WoqnaU_U6yg6VOD8PmUvmbve2xc1CFVZH9RYQ0ftfcs,726
|
24
|
+
mocap_desktop_gui/mc/mc_sync_media_player.py,sha256=PhZbnSvTTb8--glbRIq76jkTnZWdNp8rJcayThIWHa0,726
|
25
|
+
mocap_desktop_gui/mc/mc_sync_video_decoder_service.py,sha256=3L0KkfOXVyr17jA5Wmvwyhzcvw97fHPVMDepLdZfZzY,726
|
26
|
+
mocap_desktop_gui/mc/mc_sync_video_paint_item.py,sha256=ONXPLt4rgf36Iy9nKuxXgPjjOjmCqjjTa3rUM2t7Dkw,726
|
27
|
+
mocap_desktop_gui/mc/mc_take.py,sha256=6LTSzPTX96nn5ZLbTsZ2tv9xRmW9uItIiGXDOObMdeA,726
|
28
|
+
mocap_desktop_gui/mc/mc_take_cloud_job.py,sha256=ZlJjSmibbQMyJEAWm8MQI1htPHfRd1O2QcT_f2bF70U,726
|
29
|
+
mocap_desktop_gui/mc/mc_take_cloud_job_action.py,sha256=x4mvuHFKIuIE51LqkkYCgIsE4sjMkPB7xIpjyS-ziHM,726
|
30
|
+
mocap_desktop_gui/mc/mc_take_cloud_job_calib.py,sha256=6jCfciWSyXe99C4BOPjwTaJN3-KzZHcjLwSOzF9L0lM,726
|
31
|
+
mocap_desktop_gui/mc/mc_take_list_model.py,sha256=OZRK5xKdCbg1yEp3_dyHaUz-xs_1tPFls_90KEcJPG8,726
|
32
|
+
mocap_desktop_gui/mc/mc_take_local_job.py,sha256=HQBYxplw24ySxUrz9F9-5gTNj5p9jK6Sjxh6LWaanqk,725
|
33
|
+
mocap_desktop_gui/mc/mc_take_local_job_service.py,sha256=YUFHvOeiOAvV7j9WxN20xemiie423TmTJHp3uTX7c7k,726
|
34
|
+
mocap_desktop_gui/mc/mc_take_run_common.py,sha256=URktEY22tkIbfNO3ZztlFQWAtXa8fn-NJsIFixnAQnY,726
|
35
|
+
mocap_desktop_gui/mc/mc_take_run_data_prep.py,sha256=kWYE-wDclfec88MCXXRDH3w35KqfTlsh8S_wquhzYhQ,725
|
36
|
+
mocap_desktop_gui/mc/mc_take_run_settings.py,sha256=gpBpgaUQ7PeUNIr_YLat_fV15ormay1B5TSTWw54NiE,726
|
37
|
+
mocap_desktop_gui/mc/mc_take_runs_cloud_manager.py,sha256=KzbImqy4IVP7i0dvQtvd9OGdd71WzZhh6DmkkyLEd6k,726
|
38
|
+
mocap_desktop_gui/mc/mc_take_runs_local_manager.py,sha256=cR_7YLLJDaL6QPk1vw3BAGF3wSKhvT4EmSxzi0iD_JE,726
|
39
|
+
mocap_desktop_gui/mc/mc_take_runs_manager.py,sha256=Euqh_SUANSJw8eFTFC5UgWgdNAC1W-xsdjkdhk6GsPs,726
|
40
|
+
mocap_desktop_gui/mc/mc_take_settings.py,sha256=zqhOr7jKc__orONOkSiR6S7Yn4Vv0xHOf4J-hAqhpYg,726
|
41
|
+
mocap_desktop_gui/mc/mc_take_video_model.py,sha256=6ZOksJGhi0NLZb-jVRZtOa64mzXCxkye9IcP-xkwjT0,725
|
42
|
+
mocap_desktop_gui/mc/mc_task_trt_engine_gen.py,sha256=xhbLAMoVaVdXw6yEBcSgNEuJYaKyfAOf3f-QG6K_jGg,726
|
43
|
+
mocap_desktop_gui/mc/mc_worker.py,sha256=62fhDcEFIZoGnuoMq-GZvHYdzpRaozeIA_qM5tQ_zJg,726
|
44
|
+
mocap_desktop_gui/mc/qml_engine.py,sha256=DtvDa8izi7oBXe_o-QeRm4_2BoaHNY7sJl6eGR6zfWQ,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=ANmSnAa-TNFEcQ03Ui8Prh9DcaVIKUx4ECGmNM93QRc,18134
|
52
|
+
mocap_desktop_gui/mc/settings/settings_extrinsic.yaml,sha256=vDTZqkq8n6XfocRjJlolEj0W5sKuC5CpZvLc4KEnkFU,6483
|
53
|
+
mocap_desktop_gui/mc/util.py,sha256=s5o-uaq5K6nxGt4kEb_MFLcDrf87tOE76wq4-M5UI6Q,726
|
54
|
+
mocap_desktop_gui/sample.py,sha256=TV1XexARymtNwlCzS-IKFU_CyS78UBmDhzlh_up4GOo,724
|
55
|
+
mocap_desktop_gui/settings.ini,sha256=kBwDIpL74uLZhID3_yaECygFKftAyevRrN7PRcjpVvc,131
|
56
|
+
mocap_desktop_gui-0.16.1.dist-info/METADATA,sha256=utLeCiy6TUzAgAMhy4L5shx9Z8YtDrbFqDwn3YnUb1M,1024
|
57
|
+
mocap_desktop_gui-0.16.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
58
|
+
mocap_desktop_gui-0.16.1.dist-info/entry_points.txt,sha256=xMiDqkrscETVFaPjOzROvqLLQqlaurQKY-U4nPckFog,64
|
59
|
+
mocap_desktop_gui-0.16.1.dist-info/RECORD,,
|