mocap-desktop-gui 0.17.0__py3-none-any.whl → 0.18.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_1732737361_1041659107.py +246 -0
- mocap_desktop_gui/gen/__init__.py +18 -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 +3 -3
- 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 +3 -3
- mocap_desktop_gui/mc/mc_task_trt_engine_gen.py +4 -4
- mocap_desktop_gui/mc/mc_video.py +18 -0
- mocap_desktop_gui/mc/mc_video_manager.py +18 -0
- 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.17.0.dist-info → mocap_desktop_gui-0.18.1.dist-info}/METADATA +1 -1
- mocap_desktop_gui-0.18.1.dist-info/RECORD +64 -0
- mocap_desktop_gui/axengine_1731500472_1041659107.py +0 -246
- mocap_desktop_gui-0.17.0.dist-info/RECORD +0 -61
- {mocap_desktop_gui-0.17.0.dist-info → mocap_desktop_gui-0.18.1.dist-info}/WHEEL +0 -0
- {mocap_desktop_gui-0.17.0.dist-info → mocap_desktop_gui-0.18.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_1732737361_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
|
12
|
+
import axengine_1732737361_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
|
18
|
-
_axengine._axe_run(
|
17
|
+
from axengine_1732737361_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(393, 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_1732737361_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
|
12
|
+
import axengine_1732737361_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
|
18
|
-
_axengine._axe_run(
|
17
|
+
from axengine_1732737361_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(309, 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_1732737361_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
|
12
|
+
import axengine_1732737361_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
|
18
|
-
_axengine._axe_run(
|
17
|
+
from axengine_1732737361_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(57, 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_1732737361_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
|
12
|
+
import axengine_1732737361_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
|
18
|
-
_axengine._axe_run(
|
17
|
+
from axengine_1732737361_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(299, 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_1732737361_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
|
12
|
+
import axengine_1732737361_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
|
18
|
-
_axengine._axe_run(
|
17
|
+
from axengine_1732737361_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(176, 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_1732737361_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
|
12
|
+
import axengine_1732737361_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
|
17
|
+
from axengine_1732737361_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
|
-
'
|
5
|
+
'axengine_1732737361_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
|
12
|
+
import axengine_1732737361_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
|
18
|
-
_axengine._axe_run(
|
17
|
+
from axengine_1732737361_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(380, 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_1732737361_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
|
12
|
+
import axengine_1732737361_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
|
18
|
-
_axengine._axe_run(
|
17
|
+
from axengine_1732737361_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
|
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
|
-
'
|
5
|
+
'axengine_1732737361_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
|
12
|
+
import axengine_1732737361_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
|
18
|
-
_axengine._axe_run(
|
17
|
+
from axengine_1732737361_1041659107 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_1732737361_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
|
12
|
+
import axengine_1732737361_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
|
18
|
-
_axengine._axe_run(
|
17
|
+
from axengine_1732737361_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(475, 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_1732737361_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
|
12
|
+
import axengine_1732737361_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
|
18
|
-
_axengine._axe_run(
|
17
|
+
from axengine_1732737361_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(278, 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_1732737361_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
|
12
|
+
import axengine_1732737361_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
|
17
|
+
from axengine_1732737361_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
|
-
'
|
5
|
+
'axengine_1732737361_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
|
12
|
+
import axengine_1732737361_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
|
18
|
-
_axengine._axe_run(
|
17
|
+
from axengine_1732737361_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(405, 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_1732737361_1041659107.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_1732737361_1041659107 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_1732737361_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(445, 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_1732737361_1041659107.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_1732737361_1041659107 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_1732737361_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(260, 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_1732737361_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
|
12
|
+
import axengine_1732737361_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
|
18
|
-
_axengine._axe_run(
|
17
|
+
from axengine_1732737361_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(462, 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_1732737361_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
|
12
|
+
import axengine_1732737361_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
|
18
|
-
_axengine._axe_run(
|
17
|
+
from axengine_1732737361_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(60, 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_1732737361_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
|
12
|
+
import axengine_1732737361_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
|
18
|
-
_axengine._axe_run(
|
17
|
+
from axengine_1732737361_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(249, 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_1732737361_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
|
12
|
+
import axengine_1732737361_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
|
17
|
+
from axengine_1732737361_1041659107 import WupiError, WupiLicenseError, WupiErrorCode
|
18
18
|
_axengine._axe_run(6, globals())
|
@@ -0,0 +1,64 @@
|
|
1
|
+
mocap_desktop_gui/__init__.py,sha256=_V8GaRZEuhVE2LZCVZg_pJZ7IqDdOoAZ0-r8dkuUJ5U,726
|
2
|
+
mocap_desktop_gui/axengine_1732737361_1041659107.py,sha256=nu_QIxLDLkTnI8IJ-9_Y2d4_33xGS8J_RyufljVH9rw,443263
|
3
|
+
mocap_desktop_gui/gen/__init__.py,sha256=ltT3U0KgeahUasFah-1EshV0bH4vIeTpI-NbcSnNne8,726
|
4
|
+
mocap_desktop_gui/gen/rc_icons.py,sha256=eOPRtAqCEUfMc5Z1mgZ__XsvCMJ59wIO6rZMTgNAyqQ,726
|
5
|
+
mocap_desktop_gui/gen/rc_qml.py,sha256=NiCWCQ0mhRwbb_XpbTINu53NI45EX-Kd_K0FFIiX-Hs,726
|
6
|
+
mocap_desktop_gui/gen/rc_style.py,sha256=x8OQdGpj-FX-HhCiT51plXE5J-28czSAntqXZ7k5ZOE,726
|
7
|
+
mocap_desktop_gui/main.py,sha256=Hq836EAsbrZ4wNJexD_jD2ymfCRaCeciDXfC400sRRU,724
|
8
|
+
mocap_desktop_gui/mc/__init__.py,sha256=XdLfgCzsHWJ4i_9_-kg9jzF1J0gpRdMJlsIq3Al2czg,726
|
9
|
+
mocap_desktop_gui/mc/bld_fbx_2_glb.py,sha256=MQfXU4AXGwkorhlTo_Cy5HcXwPwNEpX3U1YevL2x_S4,726
|
10
|
+
mocap_desktop_gui/mc/bld_utils.py,sha256=Do-l5cWlF8Y8AY2STJa5n136I7gj71-tD8EEjoBMsxs,726
|
11
|
+
mocap_desktop_gui/mc/camera_models.py,sha256=pM7t5VnyPe2ReJd1lq5s0_Zntr9TC_FnLMmw6i0gFqg,726
|
12
|
+
mocap_desktop_gui/mc/mc_app_manager.py,sha256=eEKSDLgVhbyIyn8-AY6v-a3MLtRNJYKLQoIVa76ievw,726
|
13
|
+
mocap_desktop_gui/mc/mc_auth_core.py,sha256=RLmSZeOmeBWdKf9fmN6rwEQ_eskTDntGasw6xI7OThk,726
|
14
|
+
mocap_desktop_gui/mc/mc_auth_service.py,sha256=bP0FwQES7iGsb0v-kMg8NMjERM00ib7MzhaDk58udd8,726
|
15
|
+
mocap_desktop_gui/mc/mc_calib.py,sha256=dyLVwj2kBInddfj5Xa0tnHFrROfbGIcE-RbtlpkJ7wM,726
|
16
|
+
mocap_desktop_gui/mc/mc_cam_ui_states.py,sha256=klYqty7NtoLtuTNgT4PtTXUJhK4gOtZODkJ_blirvOk,726
|
17
|
+
mocap_desktop_gui/mc/mc_cloud_service.py,sha256=s7LEQ2RMBeVqB9Lc2WM1bt4CUe8Bp1aub3V9H_0yzec,726
|
18
|
+
mocap_desktop_gui/mc/mc_common_paths.py,sha256=UnUVNrAI0pmUhZ9yyhJQBwDPeA_EY3tkvcCoUznoWzU,726
|
19
|
+
mocap_desktop_gui/mc/mc_context.py,sha256=NQDeEvZieehif1tWz8BfH4owmalintOzVLRFLeD8YwU,726
|
20
|
+
mocap_desktop_gui/mc/mc_file_util.py,sha256=GUpad6TNsSaIOFDSnE0IFDOpHkoRvgJLYoSGVJoGm8c,726
|
21
|
+
mocap_desktop_gui/mc/mc_import_folder.py,sha256=ejOS3Kbv4dzvCEDtLa3n_aEhg7g-NBNThQTfgShC6vs,726
|
22
|
+
mocap_desktop_gui/mc/mc_project.py,sha256=CLm-z2s0QA2Uq8zsrkdY-4tl1fMUIGUGVq6nItr8HbA,726
|
23
|
+
mocap_desktop_gui/mc/mc_project_manager.py,sha256=8mjNIZhPvNtUGH6LjyFkVtZzBi-PS3Ek5_7Tvf7TceQ,725
|
24
|
+
mocap_desktop_gui/mc/mc_scene_3d_service.py,sha256=vgt8ai65kE01qkVCaBUmN0gleQ74mCRblkyYEmnQTCA,726
|
25
|
+
mocap_desktop_gui/mc/mc_sync_media_player.py,sha256=xtgfh8rIyzJ7J3hbZoIA3lOw6k9ZrBq3FFgXLluDshc,726
|
26
|
+
mocap_desktop_gui/mc/mc_sync_video_decoder_service.py,sha256=OryRxeIobHXFkAjK0-8hatt1Pu3TfLDeh7av5WTLOeo,726
|
27
|
+
mocap_desktop_gui/mc/mc_sync_video_paint_item.py,sha256=GtfSYx9zKfyx37KkrHKf18LjUczJtFleT-4_ZgW846A,726
|
28
|
+
mocap_desktop_gui/mc/mc_take.py,sha256=2EXN5a77I1tmvIGWi5-BYCwnTAj9rapfusHROL4_ego,726
|
29
|
+
mocap_desktop_gui/mc/mc_take_cloud_job.py,sha256=KHddtlZXF-kYQWqZRYFEMEn-vvhmY2cB9XD7G0A0qxw,726
|
30
|
+
mocap_desktop_gui/mc/mc_take_cloud_job_action.py,sha256=cquk-1UEGOck-Y8G-5_GnAHq9mB1yMRgpaW1itzpoKc,726
|
31
|
+
mocap_desktop_gui/mc/mc_take_cloud_job_calib.py,sha256=0fO9eTPRTBvMo1FXC7dQzrwDPfSzPC-tUc98sUEANSU,726
|
32
|
+
mocap_desktop_gui/mc/mc_take_list_model.py,sha256=cupWIusn91YLhOpz47JiX4K77bhtCtZPVz2WYcH0u4U,726
|
33
|
+
mocap_desktop_gui/mc/mc_take_local_job.py,sha256=PoQFYG_tbVBa4Xzfgm7DMZCQ4TMlqHZ2Gtoz21batRk,725
|
34
|
+
mocap_desktop_gui/mc/mc_take_local_job_service.py,sha256=nd4tW7OWEf8QbXD_xDAW1-2039o3ULdt6BaC8L2b9ko,726
|
35
|
+
mocap_desktop_gui/mc/mc_take_run_common.py,sha256=1Z86Med9Vsp3bjE2pQPtjWbT7-IQI92k8X9R7AUhxO8,726
|
36
|
+
mocap_desktop_gui/mc/mc_take_run_data_prep.py,sha256=j4iOa4rftep67VyBvNgL_ea5xtC8yt6MErPcRALnHFU,725
|
37
|
+
mocap_desktop_gui/mc/mc_take_run_settings.py,sha256=e2QwQ-7yXdDT7ig3KQHT8GCiryw9085W0NucmSteP0I,726
|
38
|
+
mocap_desktop_gui/mc/mc_take_runs_cloud_manager.py,sha256=eQTGcklNsuzMNuXtMG9-eqqmpjkwEvdJmvsI8Gwf4ic,726
|
39
|
+
mocap_desktop_gui/mc/mc_take_runs_local_manager.py,sha256=CfyD2UuknL85Jw2IxQW0tJs7eGVKH0y5IvClmBBx5Nk,726
|
40
|
+
mocap_desktop_gui/mc/mc_take_runs_manager.py,sha256=BldewA8nTOHQSU0cxRoEyXYJ2qTwMy4pWy9F2J2NDjc,726
|
41
|
+
mocap_desktop_gui/mc/mc_take_settings.py,sha256=EzzKd8CHmgJyN5DPcq_dud6ORZOxvbLgGRB5LcLUIb4,726
|
42
|
+
mocap_desktop_gui/mc/mc_take_video_model.py,sha256=6shj5Qw_DkxpaWTBpoB71F5NnwnQSuL0KV4WJSRzmfQ,725
|
43
|
+
mocap_desktop_gui/mc/mc_task_trt_engine_gen.py,sha256=kAcdvGZdyE9h50yndNM73lwVU2RNqjQZORQEAlIpRxQ,726
|
44
|
+
mocap_desktop_gui/mc/mc_video.py,sha256=N5FYoIHJQsUD22vZ-_o8c2buNo5pYlezIvVfbQOXsg0,726
|
45
|
+
mocap_desktop_gui/mc/mc_video_manager.py,sha256=PDJgKj79pdqvkWQjmuyTxaZA-IIv5ckM4Dg8bpDtEsQ,726
|
46
|
+
mocap_desktop_gui/mc/mc_worker.py,sha256=q3fssQx_NR7nrImD5PQPt5md1y4O4KJlkR_D9_9PfEI,726
|
47
|
+
mocap_desktop_gui/mc/qml_engine.py,sha256=fJRvHu0SvW1xeX5bqqpGXqZMrBospiVmTl4rXpz-FAI,725
|
48
|
+
mocap_desktop_gui/mc/rig/Move_Mo.blend,sha256=rNN1yapGy_ok0rd5BFO7ldkTcNeeROnIrmKa2COA_Ic,29633272
|
49
|
+
mocap_desktop_gui/mc/rig/mapping_body.csv,sha256=CaJ9SLWvXNFU44ft-VI9Br4US2hmdLoMh8w8KnXvHHg,551
|
50
|
+
mocap_desktop_gui/mc/rig/mapping_fingers.csv,sha256=cy1EX5aJTRjE3dQLe9YsdrGUsxGqPjYupb99fMw_k18,1030
|
51
|
+
mocap_desktop_gui/mc/rig/sdc_rig.zip,sha256=hYCBzYFZKuSr15Xs0nql-iD6aLpuTzy-_5o2CyZjiJE,9022411
|
52
|
+
mocap_desktop_gui/mc/scene/scene_3d.blend.5a95cd45,sha256=YBmgAeDqATPeJfra3WrblJ3qpn8QfPtbh4W5Elvn0bM,31290788
|
53
|
+
mocap_desktop_gui/mc/settings/camera_models.yaml,sha256=cokr4yWMbTTw2X0ObvBIM_j9HWqgBa4QHqSDlF_XpSo,3320
|
54
|
+
mocap_desktop_gui/mc/settings/pipeline_log_settings.yaml,sha256=LRUryWBeAI_1ZlU428F2Wqqd_IUWvB2CFv5X0ilBpQM,1622
|
55
|
+
mocap_desktop_gui/mc/settings/settings_action.yaml,sha256=lLglwbLCQ2Uzx5CyLCPcADZbnJ6Brc1evcAP_XnEPmw,18134
|
56
|
+
mocap_desktop_gui/mc/settings/settings_extrinsic.yaml,sha256=vDTZqkq8n6XfocRjJlolEj0W5sKuC5CpZvLc4KEnkFU,6483
|
57
|
+
mocap_desktop_gui/mc/settings/trt_gen_lite.ini,sha256=QavcRCmwmXTeOlO05LWVPjcVg2cZBwJ_A-dnOajyTy8,688
|
58
|
+
mocap_desktop_gui/mc/util.py,sha256=1p1ZVwOi5zNLL_WjYR2kVY7euz1QDdbw6oZYy4vlUqA,726
|
59
|
+
mocap_desktop_gui/sample.py,sha256=j-Ho_7mOD1ROHydLrpw5aKjzM3MEHBe9wVHSZjto-HQ,724
|
60
|
+
mocap_desktop_gui/settings.ini,sha256=5zvMETGa_QWHnRN8eplSc-7_owS-7Ww03Gt_Qx1xBQA,8
|
61
|
+
mocap_desktop_gui-0.18.1.dist-info/METADATA,sha256=xvQhlixjTLc7fWw3JWNP-ySaQFEg48jvidfnTjJ1xRU,1024
|
62
|
+
mocap_desktop_gui-0.18.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
63
|
+
mocap_desktop_gui-0.18.1.dist-info/entry_points.txt,sha256=xMiDqkrscETVFaPjOzROvqLLQqlaurQKY-U4nPckFog,64
|
64
|
+
mocap_desktop_gui-0.18.1.dist-info/RECORD,,
|