mocap-desktop-gui 0.18.3__py3-none-any.whl → 0.18.4__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_1734000956_2554718151.py +246 -0
- mocap_desktop_gui/gen/__init__.py +4 -4
- 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 +4 -4
- 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_video.py +4 -4
- mocap_desktop_gui/mc/mc_video_manager.py +4 -4
- mocap_desktop_gui/mc/mc_video_uploader.py +4 -4
- mocap_desktop_gui/mc/mc_videos_uploader.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 +4 -4
- {mocap_desktop_gui-0.18.3.dist-info → mocap_desktop_gui-0.18.4.dist-info}/METADATA +3 -4
- mocap_desktop_gui-0.18.4.dist-info/RECORD +66 -0
- mocap_desktop_gui/axengine_1733743184_3812259908.py +0 -246
- mocap_desktop_gui-0.18.3.dist-info/RECORD +0 -66
- {mocap_desktop_gui-0.18.3.dist-info → mocap_desktop_gui-0.18.4.dist-info}/WHEEL +0 -0
- {mocap_desktop_gui-0.18.3.dist-info → mocap_desktop_gui-0.18.4.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_1734000956_2554718151.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_1734000956_2554718151 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_1734000956_2554718151 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(437, 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_1734000956_2554718151.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_1734000956_2554718151 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_1734000956_2554718151 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(355, 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_1734000956_2554718151.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_1734000956_2554718151 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_1734000956_2554718151 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(61, globals())
|
@@ -2,17 +2,17 @@ import os as _os
|
|
2
2
|
import sys as _sys
|
3
3
|
_axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
|
4
4
|
while not _os.path.exists(_os.path.join(_axeSearchPath,
|
5
|
-
'
|
5
|
+
'axengine_1734000956_2554718151.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_1734000956_2554718151 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_1734000956_2554718151 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(345, 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_1734000956_2554718151.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_1734000956_2554718151 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_1734000956_2554718151 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(197, 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_1734000956_2554718151.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_1734000956_2554718151 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_1734000956_2554718151 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(73, 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_1734000956_2554718151.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_1734000956_2554718151 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_1734000956_2554718151 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(424, 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_1734000956_2554718151.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_1734000956_2554718151 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_1734000956_2554718151 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(522, 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_1734000956_2554718151.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_1734000956_2554718151 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_1734000956_2554718151 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(341, 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_1734000956_2554718151.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_1734000956_2554718151 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_1734000956_2554718151 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(538, 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_1734000956_2554718151.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_1734000956_2554718151 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_1734000956_2554718151 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(323, 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_1734000956_2554718151.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_1734000956_2554718151 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_1734000956_2554718151 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(16, 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_1734000956_2554718151.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_1734000956_2554718151 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_1734000956_2554718151 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(449, globals())
|
mocap_desktop_gui/mc/mc_video.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_1734000956_2554718151.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_1734000956_2554718151 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_1734000956_2554718151 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(499, 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_1734000956_2554718151.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_1734000956_2554718151 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_1734000956_2554718151 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(305, 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_1734000956_2554718151.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_1734000956_2554718151 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_1734000956_2554718151 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(603, 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_1734000956_2554718151.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_1734000956_2554718151 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_1734000956_2554718151 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
|
-
'
|
5
|
+
'axengine_1734000956_2554718151.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_1734000956_2554718151 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_1734000956_2554718151 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(525, 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_1734000956_2554718151.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_1734000956_2554718151 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_1734000956_2554718151 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(64, 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_1734000956_2554718151.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_1734000956_2554718151 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_1734000956_2554718151 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(271, 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_1734000956_2554718151.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_1734000956_2554718151 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_1734000956_2554718151 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(7, globals())
|
@@ -1,15 +1,14 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: mocap-desktop-gui
|
3
|
-
Version: 0.18.
|
3
|
+
Version: 0.18.4
|
4
4
|
Summary:
|
5
5
|
Author: Move.ai
|
6
|
-
Requires-Python: >=3.10,<3.
|
6
|
+
Requires-Python: >=3.10.0,<3.11.dev0
|
7
7
|
Classifier: Programming Language :: Python :: 3
|
8
8
|
Classifier: Programming Language :: Python :: 3.10
|
9
|
-
Classifier: Programming Language :: Python :: 3.11
|
10
|
-
Classifier: Programming Language :: Python :: 3.12
|
11
9
|
Requires-Dist: PySide6 (>=6.7.2)
|
12
10
|
Requires-Dist: auth0-python (>=4.7.2,<5.0.0)
|
11
|
+
Requires-Dist: bpy (>=4.0.0)
|
13
12
|
Requires-Dist: move-ugc-python (>=1.4.1,<2.0.0)
|
14
13
|
Requires-Dist: numba (>=0.60.0,<0.61.0)
|
15
14
|
Requires-Dist: opencv-python (>=4.10.0.84,<5.0.0.0)
|
@@ -0,0 +1,66 @@
|
|
1
|
+
mocap_desktop_gui/__init__.py,sha256=1BApZ8MBL7BOCxu-FPc3Gxe-tghhkOCO9D3VM1iynQQ,726
|
2
|
+
mocap_desktop_gui/axengine_1734000956_2554718151.py,sha256=WUwLA3z9f1kjYXxOZLyFEe9Gz-rrZMZqpizxru2UCQY,465338
|
3
|
+
mocap_desktop_gui/gen/__init__.py,sha256=-OS4RrqTRb3zJIPEzHWWXeRaVtK2bq4-V_liIWFtEek,726
|
4
|
+
mocap_desktop_gui/gen/rc_icons.py,sha256=qX0Frf4g_KGGRM-4NZRuftHfOv1zFVnemgOBIPWei6s,726
|
5
|
+
mocap_desktop_gui/gen/rc_qml.py,sha256=8kHqmlOBELxV5ty4hqsenWApAcPFYSCrFgJAioPnS3o,726
|
6
|
+
mocap_desktop_gui/gen/rc_style.py,sha256=87L2Lj30btuTIHat9i48iLWO3DL0K8XsWmL_piYARn8,726
|
7
|
+
mocap_desktop_gui/main.py,sha256=f1m4dfUZpKVgK3DiHWfkUMt_sSgzEEnxykNTfA1HVZs,724
|
8
|
+
mocap_desktop_gui/mc/__init__.py,sha256=8jZjSSsN1glCG3YfLKZPCQ71NTwcnnTc4UUqW-xD9t4,726
|
9
|
+
mocap_desktop_gui/mc/bld_fbx_2_glb.py,sha256=9HDf3t-ynhgQ36biitrL2ShJr07dPNPK6Gnv7WdkpYA,726
|
10
|
+
mocap_desktop_gui/mc/bld_utils.py,sha256=S2SBHX5D2bvLH3x6QwAoWyDZsuouuiZxDMhItt2aw1I,726
|
11
|
+
mocap_desktop_gui/mc/camera_models.py,sha256=SAygusQDoEdkhDyeGdyEo_DmTMHIwY_FtllpdH_SIs8,726
|
12
|
+
mocap_desktop_gui/mc/mc_app_manager.py,sha256=6aOxZfFMDl7jhVlme3Xf591Eygw7oWQMYr1q8SRb8lE,726
|
13
|
+
mocap_desktop_gui/mc/mc_auth_core.py,sha256=XZkvDdjP_W-G--WWz2P-sKqO7cU0cLRkDsa_Ge81lGQ,726
|
14
|
+
mocap_desktop_gui/mc/mc_auth_service.py,sha256=KBTMR7eCbv5DkMptlRZglSsUvaI9nlRwYOCOPvLgKGQ,726
|
15
|
+
mocap_desktop_gui/mc/mc_calib.py,sha256=mLESnEM2VmUBlhl-hmZ6kEty7Pp-e88HaQMLRuBdrAo,726
|
16
|
+
mocap_desktop_gui/mc/mc_cam_ui_states.py,sha256=-qNvheub_nATtll32MBsXIVo9cVrYVcMcKnD68bLK3k,726
|
17
|
+
mocap_desktop_gui/mc/mc_cloud_service.py,sha256=YZbl2BM6UlzTS1f1eNF1HoZ9QqU3ueAqR2xKoFPxp9c,726
|
18
|
+
mocap_desktop_gui/mc/mc_common_paths.py,sha256=isAff5ma-c4ZOY_B9evwksvp90D50AXJn92B-R-ngHo,726
|
19
|
+
mocap_desktop_gui/mc/mc_context.py,sha256=VGIsulfLk-x-a45kiBRnbVEQr6fEfoZMF7XVbKau1xE,726
|
20
|
+
mocap_desktop_gui/mc/mc_file_util.py,sha256=R2njl_iJQJcyblYFzwAPQYp0uC-wB_eMa4CQbjLraA8,726
|
21
|
+
mocap_desktop_gui/mc/mc_import_folder.py,sha256=ZUZ1qKiwUoSrEJ1DiJOyuPkzSttwN2SSwt0dNTFZGQY,726
|
22
|
+
mocap_desktop_gui/mc/mc_project.py,sha256=k-n1t3K00j23cDbsfVgMDCWM1UDTHRwvdzuQ2civSz0,726
|
23
|
+
mocap_desktop_gui/mc/mc_project_manager.py,sha256=a0Jq8hZTCX18xsrJUZe4kC6XsgDihi3xN6Bw9jwdqww,725
|
24
|
+
mocap_desktop_gui/mc/mc_scene_3d_service.py,sha256=wWPptS6cqJrm_g1OWMK-LuDkrMzU89VQcRbjct_yt5s,726
|
25
|
+
mocap_desktop_gui/mc/mc_sync_media_player.py,sha256=OKBzmQZfGicTHvxXdiTXZ1JcICHP3P_ZA1YwSAvev_8,726
|
26
|
+
mocap_desktop_gui/mc/mc_sync_video_decoder_service.py,sha256=xGj9Ijk1-X_PyCEweCBTZhvsuLEoPslEW1AGoL2UmBE,726
|
27
|
+
mocap_desktop_gui/mc/mc_sync_video_paint_item.py,sha256=CC4K8maWAzluOynfGgXPv1TEppieh1JPgkWEMzKI-ao,726
|
28
|
+
mocap_desktop_gui/mc/mc_take.py,sha256=1o8Sjr4u_KUMPKgKyjngpkkobG8hmOJ_XYxv_SnLdLw,726
|
29
|
+
mocap_desktop_gui/mc/mc_take_cloud_job.py,sha256=D3VM5Vd8lfGCnEgkzyFj9B-tXFYsfpA7cLRWWKotjv8,726
|
30
|
+
mocap_desktop_gui/mc/mc_take_cloud_job_action.py,sha256=P6uWaUJs_S-CAdQxwInOruW-LtKVYqqnOjS-I3aQasU,726
|
31
|
+
mocap_desktop_gui/mc/mc_take_cloud_job_calib.py,sha256=c2ltthsgLKzX1iB_yU6rhwWCxsfILmQOaN87shi0gTs,726
|
32
|
+
mocap_desktop_gui/mc/mc_take_list_model.py,sha256=Rk6mr43fmYY8-C60EoBzPkJk8jIYNPUw6xTwD_qMMaU,726
|
33
|
+
mocap_desktop_gui/mc/mc_take_local_job.py,sha256=aVzTqQMPcnxWEreC-xBMp9yxvfZ42sOYnbl3bPRsv2Y,725
|
34
|
+
mocap_desktop_gui/mc/mc_take_local_job_service.py,sha256=thOMSX2Lw3Co-6of42YRklVfeKLB2TpreGNXb4kWAi4,726
|
35
|
+
mocap_desktop_gui/mc/mc_take_run_common.py,sha256=DYV5DwLvEK3ojyYDjbd9yE52T2XETwamGybiL8OuzGc,726
|
36
|
+
mocap_desktop_gui/mc/mc_take_run_data_prep.py,sha256=TkWY3RNbetlWoUmwIcZHKNXey76_BrPK_3UwbOY9qJE,725
|
37
|
+
mocap_desktop_gui/mc/mc_take_run_settings.py,sha256=SS4ymQ5loikMZ3xPZpjFBj-eMLmk6e2P7jUwaRQ5tBE,726
|
38
|
+
mocap_desktop_gui/mc/mc_take_runs_cloud_manager.py,sha256=wwUcYBl_qLc3xb2xL7dV5MYPA300JASS548u72KUy_g,726
|
39
|
+
mocap_desktop_gui/mc/mc_take_runs_local_manager.py,sha256=8I314aABuQQFIZHmtNJ_v6jAu7GS6fX6ghuvko7aSpk,726
|
40
|
+
mocap_desktop_gui/mc/mc_take_runs_manager.py,sha256=NeQxUdE9eG1_qUDIQEybNmA8_9S1WPqr2bzrOCM_lI0,726
|
41
|
+
mocap_desktop_gui/mc/mc_take_settings.py,sha256=WqI0oNnIvH98D1EBpH_v_VnRXZUEeq3QcqY1t_G903Y,726
|
42
|
+
mocap_desktop_gui/mc/mc_take_video_model.py,sha256=OmbjVORZBHAzUzbb3a3xG0y5CTLgbMmZjwRkavFOKiI,725
|
43
|
+
mocap_desktop_gui/mc/mc_task_trt_engine_gen.py,sha256=ANGM8vknBm1DdAAIBHPB9U0uSUEOQq5Ht6U845EASxE,726
|
44
|
+
mocap_desktop_gui/mc/mc_video.py,sha256=flJlkVUAwRxACm2r7RqCaze96JrhUrvU3LELJh3hpYQ,726
|
45
|
+
mocap_desktop_gui/mc/mc_video_manager.py,sha256=YuQXTIvGe2_IMdEeiaUEzwAkJHcYRdOZTzsFO0UI6uE,726
|
46
|
+
mocap_desktop_gui/mc/mc_video_uploader.py,sha256=g6ByJXDwzYD81xE745mWpAW2exrooaUznYCeK4UGWis,726
|
47
|
+
mocap_desktop_gui/mc/mc_videos_uploader.py,sha256=dCDPkkAEPMyasMrsnnuhwNF1W8HCQ262lUlAso1SuSY,726
|
48
|
+
mocap_desktop_gui/mc/mc_worker.py,sha256=3pq7QLNb-U8W2ZSROU9bCBeOV4y3AQUAANAY21cNJ_k,726
|
49
|
+
mocap_desktop_gui/mc/qml_engine.py,sha256=XEKhdT0eY4kXWNQSZDRuQbdG1DRTURKUliBKXRYJWck,725
|
50
|
+
mocap_desktop_gui/mc/rig/Move_Mo.blend,sha256=rNN1yapGy_ok0rd5BFO7ldkTcNeeROnIrmKa2COA_Ic,29633272
|
51
|
+
mocap_desktop_gui/mc/rig/mapping_body.csv,sha256=CaJ9SLWvXNFU44ft-VI9Br4US2hmdLoMh8w8KnXvHHg,551
|
52
|
+
mocap_desktop_gui/mc/rig/mapping_fingers.csv,sha256=cy1EX5aJTRjE3dQLe9YsdrGUsxGqPjYupb99fMw_k18,1030
|
53
|
+
mocap_desktop_gui/mc/rig/sdc_rig.zip,sha256=hYCBzYFZKuSr15Xs0nql-iD6aLpuTzy-_5o2CyZjiJE,9022411
|
54
|
+
mocap_desktop_gui/mc/scene/scene_3d.blend.5a95cd45,sha256=YBmgAeDqATPeJfra3WrblJ3qpn8QfPtbh4W5Elvn0bM,31290788
|
55
|
+
mocap_desktop_gui/mc/settings/camera_models.yaml,sha256=cokr4yWMbTTw2X0ObvBIM_j9HWqgBa4QHqSDlF_XpSo,3320
|
56
|
+
mocap_desktop_gui/mc/settings/pipeline_log_settings.yaml,sha256=LRUryWBeAI_1ZlU428F2Wqqd_IUWvB2CFv5X0ilBpQM,1622
|
57
|
+
mocap_desktop_gui/mc/settings/settings_action.yaml,sha256=lLglwbLCQ2Uzx5CyLCPcADZbnJ6Brc1evcAP_XnEPmw,18134
|
58
|
+
mocap_desktop_gui/mc/settings/settings_extrinsic.yaml,sha256=vDTZqkq8n6XfocRjJlolEj0W5sKuC5CpZvLc4KEnkFU,6483
|
59
|
+
mocap_desktop_gui/mc/settings/trt_gen_lite.ini,sha256=QavcRCmwmXTeOlO05LWVPjcVg2cZBwJ_A-dnOajyTy8,688
|
60
|
+
mocap_desktop_gui/mc/util.py,sha256=NNCERpOLa8mOEAQ7r1ShR607g35xfnrusBEMMnwde4E,726
|
61
|
+
mocap_desktop_gui/sample.py,sha256=Tdf5pR916I3iCs7LiVT3CiaeQGlAeKMzFtTW6WbxtW0,724
|
62
|
+
mocap_desktop_gui/settings.ini,sha256=5zvMETGa_QWHnRN8eplSc-7_owS-7Ww03Gt_Qx1xBQA,8
|
63
|
+
mocap_desktop_gui-0.18.4.dist-info/METADATA,sha256=Hq9O62biQsyJvfqiXDARO2cwFOO0P2vmLrGfzC3tKAo,958
|
64
|
+
mocap_desktop_gui-0.18.4.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
65
|
+
mocap_desktop_gui-0.18.4.dist-info/entry_points.txt,sha256=xMiDqkrscETVFaPjOzROvqLLQqlaurQKY-U4nPckFog,64
|
66
|
+
mocap_desktop_gui-0.18.4.dist-info/RECORD,,
|