mocap-desktop-gui 0.2.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mocap_desktop_gui/__init__.py +18 -0
- mocap_desktop_gui/axengine_1726085732_187673042.py +246 -0
- mocap_desktop_gui/gen/rc_icons.py +18 -0
- mocap_desktop_gui/gen/rc_qml.py +18 -0
- mocap_desktop_gui/gen/rc_style.py +18 -0
- mocap_desktop_gui/main.py +18 -0
- mocap_desktop_gui/mc/__init__.py +18 -0
- mocap_desktop_gui/mc/bld_fbx_2_glb.py +18 -0
- mocap_desktop_gui/mc/camera_models.py +18 -0
- mocap_desktop_gui/mc/mc_app_manager.py +18 -0
- mocap_desktop_gui/mc/mc_calib.py +18 -0
- mocap_desktop_gui/mc/mc_cam_ui_states.py +18 -0
- mocap_desktop_gui/mc/mc_common_paths.py +18 -0
- mocap_desktop_gui/mc/mc_context.py +18 -0
- mocap_desktop_gui/mc/mc_project.py +18 -0
- mocap_desktop_gui/mc/mc_project_manager.py +18 -0
- mocap_desktop_gui/mc/mc_sync_media_player.py +18 -0
- mocap_desktop_gui/mc/mc_sync_video_decoder_service.py +18 -0
- mocap_desktop_gui/mc/mc_sync_video_paint_item.py +18 -0
- mocap_desktop_gui/mc/mc_take.py +18 -0
- mocap_desktop_gui/mc/mc_take_list_model.py +18 -0
- mocap_desktop_gui/mc/mc_take_run.py +18 -0
- mocap_desktop_gui/mc/mc_take_run_data_prep.py +18 -0
- mocap_desktop_gui/mc/mc_take_run_settings.py +18 -0
- mocap_desktop_gui/mc/mc_take_runs_manager.py +18 -0
- mocap_desktop_gui/mc/mc_take_settings.py +18 -0
- mocap_desktop_gui/mc/mc_take_video_model.py +18 -0
- mocap_desktop_gui/mc/mc_task_trt_engine_gen.py +18 -0
- mocap_desktop_gui/mc/qml_engine.py +18 -0
- mocap_desktop_gui/mc/rig/Move_Mo.blend +0 -0
- mocap_desktop_gui/mc/rig/mapping_body.csv +21 -0
- mocap_desktop_gui/mc/rig/mapping_fingers.csv +31 -0
- mocap_desktop_gui/mc/rig/sdc_rig.zip +0 -0
- mocap_desktop_gui/mc/scene/scene_3d.blend.5a95cd45 +0 -0
- mocap_desktop_gui/mc/settings/camera_models.yaml +71 -0
- mocap_desktop_gui/mc/settings/settings_action.yaml +530 -0
- mocap_desktop_gui/mc/settings/settings_extrinsic.yaml +169 -0
- mocap_desktop_gui/mc/util.py +18 -0
- mocap_desktop_gui/operations/__init__.py +18 -0
- mocap_desktop_gui/sample.py +18 -0
- mocap_desktop_gui/settings.ini +3 -0
- mocap_desktop_gui/utils/__init__.py +18 -0
- mocap_desktop_gui-0.2.2.dist-info/METADATA +36 -0
- mocap_desktop_gui-0.2.2.dist-info/RECORD +46 -0
- mocap_desktop_gui-0.2.2.dist-info/WHEEL +4 -0
- mocap_desktop_gui-0.2.2.dist-info/entry_points.txt +3 -0
@@ -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_1726085732_187673042.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_1726085732_187673042 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_1726085732_187673042 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(269, 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_1726085732_187673042.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_1726085732_187673042 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_1726085732_187673042 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(16, 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_1726085732_187673042.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_1726085732_187673042 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_1726085732_187673042 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(341, 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_1726085732_187673042.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_1726085732_187673042 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_1726085732_187673042 import WupiError, WupiLicenseError, WupiErrorCode
|
18
|
+
_axengine._axe_run(0, globals())
|
@@ -0,0 +1,36 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: mocap-desktop-gui
|
3
|
+
Version: 0.2.2
|
4
|
+
Summary:
|
5
|
+
Author: Move.ai
|
6
|
+
Requires-Python: >=3.10,<3.13
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
8
|
+
Classifier: Programming Language :: Python :: 3.10
|
9
|
+
Classifier: Programming Language :: Python :: 3.11
|
10
|
+
Classifier: Programming Language :: Python :: 3.12
|
11
|
+
Requires-Dist: PySide6 (>=6.7.2)
|
12
|
+
Requires-Dist: mocap-base (>=1.1.18,<2.0.0)
|
13
|
+
Requires-Dist: moviepy (>=1.0.3,<2.0.0)
|
14
|
+
Requires-Dist: numba (>=0.60.0,<0.61.0)
|
15
|
+
Requires-Dist: opencv-python (>=4.10.0.84,<5.0.0.0)
|
16
|
+
Requires-Dist: psutil (>=6.0.0,<7.0.0)
|
17
|
+
Requires-Dist: ruamel-yaml (>=0.18.6,<0.19.0)
|
18
|
+
Description-Content-Type: text/markdown
|
19
|
+
|
20
|
+
# mocap-desktop-gui
|
21
|
+
|
22
|
+
# Description
|
23
|
+
|
24
|
+
|
25
|
+
|
26
|
+
# Installation
|
27
|
+
|
28
|
+
`pip install mocap-desktop-gui`
|
29
|
+
|
30
|
+
# License
|
31
|
+
|
32
|
+
A valid license is needed to run this project. Please contact [support\@move.ai](mailto:support@move.ai) or visit https://move.ai if you need a license.
|
33
|
+
|
34
|
+
# Support
|
35
|
+
|
36
|
+
Please contact support@move.ai for any technical queries.
|
@@ -0,0 +1,46 @@
|
|
1
|
+
mocap_desktop_gui/__init__.py,sha256=2J7ey_afbjFTFl6HLphSenyyNAM5gMqSKe4EhS4q6lg,722
|
2
|
+
mocap_desktop_gui/axengine_1726085732_187673042.py,sha256=ENnd3JDaEnK7Q5uKgNnz_p6BiiM8SZHCpCBonBehUSM,350123
|
3
|
+
mocap_desktop_gui/gen/rc_icons.py,sha256=McATYXe2Ztugkw4lxRcC1oDe7xSCwBxNVqL5WVzLYLo,722
|
4
|
+
mocap_desktop_gui/gen/rc_qml.py,sha256=Ng-vr4ly00L9pLW6pfJ_Eix4Zv8m4zIoTkGzvaeUf7A,722
|
5
|
+
mocap_desktop_gui/gen/rc_style.py,sha256=iv1sy3gtbzfZBNfMvSDGvil14hRLCnh-SJpQRFbH1Ok,721
|
6
|
+
mocap_desktop_gui/main.py,sha256=lHI1_HBzRvNdgSKX3ucQgPeT2kojg2TjwtoDqfy4AeE,721
|
7
|
+
mocap_desktop_gui/mc/__init__.py,sha256=Y78b-lZpaeT_UkhBs_fXGbWW9X8f-efG_78X92Psr-M,723
|
8
|
+
mocap_desktop_gui/mc/bld_fbx_2_glb.py,sha256=SkYgzDM6ht_eqJgrv8xTvXLhZN3JRd0NJDFLDVatV2c,723
|
9
|
+
mocap_desktop_gui/mc/camera_models.py,sha256=kDg0HGiNkkgZTFJ9bfJqNHi81tV4RrfTm8EfShiQMFc,723
|
10
|
+
mocap_desktop_gui/mc/mc_app_manager.py,sha256=INVopKSRm24lyeUCrjfCcZCCXHsBVVCTxhsC1V030Tc,723
|
11
|
+
mocap_desktop_gui/mc/mc_calib.py,sha256=QMYhOvSEMZr0tsKCCwY3n9_eD34ByVBqgTskEGD6NoE,723
|
12
|
+
mocap_desktop_gui/mc/mc_cam_ui_states.py,sha256=BslP69pgWN9srpO7mqzGxsU4ih98gws9GRRxqYXU-bQ,723
|
13
|
+
mocap_desktop_gui/mc/mc_common_paths.py,sha256=MgUwgqxt_p2xic5_YqnOoRiB4_1fhyV3DR2eL42SseU,723
|
14
|
+
mocap_desktop_gui/mc/mc_context.py,sha256=5GdS71sqIMdUQvmAGu1ZveP437NPXn_ryIpvnkthYv0,723
|
15
|
+
mocap_desktop_gui/mc/mc_project.py,sha256=YFIhX97oklh6BzwrpJvsKPtshnyC3hHF3cWPxYbMwn8,723
|
16
|
+
mocap_desktop_gui/mc/mc_project_manager.py,sha256=MFQrRBR4Wg-O2VhmW3xX1zCsknKIEsf1JPx4O0rLc7k,723
|
17
|
+
mocap_desktop_gui/mc/mc_sync_media_player.py,sha256=aEZrv1uSFmdK0xagGvvwayT0G84y5QEoNASQLOGGg8Y,722
|
18
|
+
mocap_desktop_gui/mc/mc_sync_video_decoder_service.py,sha256=GRjBZo7X6CndaSEHBMbZkQJCL7D181FD0fbm8YSbUMI,722
|
19
|
+
mocap_desktop_gui/mc/mc_sync_video_paint_item.py,sha256=8cB7eIQO11ZgKxl32sbh925LPyWVsUgX04b71Ofn_-w,723
|
20
|
+
mocap_desktop_gui/mc/mc_take.py,sha256=obhFE-xQaUE0DnxhUWttHIfgBWmB0mJ0gLLJldwp8nI,723
|
21
|
+
mocap_desktop_gui/mc/mc_take_list_model.py,sha256=l8hX5NKawxbWHu-z1SgyFxdeHilm_NXvpuHziNuGZGM,722
|
22
|
+
mocap_desktop_gui/mc/mc_take_run.py,sha256=T--Y82RU2KcSgrykaddGctJOcazkORF3vLI-p5uJOrk,723
|
23
|
+
mocap_desktop_gui/mc/mc_take_run_data_prep.py,sha256=3VLdIKZ5j1qm15fD6iovksXNoIowuX3OJlrcGVBHlPs,723
|
24
|
+
mocap_desktop_gui/mc/mc_take_run_settings.py,sha256=XvSM4OEGD5wgjMOgoU8LuzoFZ4cEZSErnIDQw6IgrG0,723
|
25
|
+
mocap_desktop_gui/mc/mc_take_runs_manager.py,sha256=LdhtvKRw0FfpjJ7fTFUt-evS6LvsQg_bphULJQVq1DI,722
|
26
|
+
mocap_desktop_gui/mc/mc_take_settings.py,sha256=SI3ROrhh0dkIGsJ__ZvkEZ6rMG454s0b3PlKucem_o4,723
|
27
|
+
mocap_desktop_gui/mc/mc_take_video_model.py,sha256=uGbENulM0LJwdHEAPiQNt4_urlQC6sLc-h-bFgA8ZHk,722
|
28
|
+
mocap_desktop_gui/mc/mc_task_trt_engine_gen.py,sha256=dr3_PB8woGDpfhbNxkA9gHvr1jUvpPUpbDFiv7jCcjo,723
|
29
|
+
mocap_desktop_gui/mc/qml_engine.py,sha256=NWmdLoex25TgdwUZNNK1ZrhNKfuE2jBCt_xRRXnfKUo,723
|
30
|
+
mocap_desktop_gui/mc/rig/Move_Mo.blend,sha256=rNN1yapGy_ok0rd5BFO7ldkTcNeeROnIrmKa2COA_Ic,29633272
|
31
|
+
mocap_desktop_gui/mc/rig/mapping_body.csv,sha256=CaJ9SLWvXNFU44ft-VI9Br4US2hmdLoMh8w8KnXvHHg,551
|
32
|
+
mocap_desktop_gui/mc/rig/mapping_fingers.csv,sha256=cy1EX5aJTRjE3dQLe9YsdrGUsxGqPjYupb99fMw_k18,1030
|
33
|
+
mocap_desktop_gui/mc/rig/sdc_rig.zip,sha256=hYCBzYFZKuSr15Xs0nql-iD6aLpuTzy-_5o2CyZjiJE,9022411
|
34
|
+
mocap_desktop_gui/mc/scene/scene_3d.blend.5a95cd45,sha256=YBmgAeDqATPeJfra3WrblJ3qpn8QfPtbh4W5Elvn0bM,31290788
|
35
|
+
mocap_desktop_gui/mc/settings/camera_models.yaml,sha256=cokr4yWMbTTw2X0ObvBIM_j9HWqgBa4QHqSDlF_XpSo,3320
|
36
|
+
mocap_desktop_gui/mc/settings/settings_action.yaml,sha256=3Yq7q5Vl4fagyFNma7CBITGgOqA8FMRSFjJiTCBeC_Y,18133
|
37
|
+
mocap_desktop_gui/mc/settings/settings_extrinsic.yaml,sha256=BUnBgmHlD-JWLKtvciwY7ekhznsANRYvPPH_Hs_GI2s,6482
|
38
|
+
mocap_desktop_gui/mc/util.py,sha256=Y-TEToX48p4RIKLB0Wkjp5IhQpJLar7owSy4R2WOC_E,723
|
39
|
+
mocap_desktop_gui/operations/__init__.py,sha256=mGP-ytMkv5kOsQn38fUsNive7o5NAE3PkdmLyAScOGk,722
|
40
|
+
mocap_desktop_gui/sample.py,sha256=aPhpuP49Wl5By0t4Buz4FDE2fLfRY4x0pz5rD11n7xA,723
|
41
|
+
mocap_desktop_gui/settings.ini,sha256=kBwDIpL74uLZhID3_yaECygFKftAyevRrN7PRcjpVvc,131
|
42
|
+
mocap_desktop_gui/utils/__init__.py,sha256=4bq9FHjCq8xGtFxEErvS_dKru4H9yHiXgiScdmmjCJA,721
|
43
|
+
mocap_desktop_gui-0.2.2.dist-info/METADATA,sha256=fWf0dwyF7P1kl0JBz2DUedR1PsjRQbZX07acUKFsKBQ,974
|
44
|
+
mocap_desktop_gui-0.2.2.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
45
|
+
mocap_desktop_gui-0.2.2.dist-info/entry_points.txt,sha256=xMiDqkrscETVFaPjOzROvqLLQqlaurQKY-U4nPckFog,64
|
46
|
+
mocap_desktop_gui-0.2.2.dist-info/RECORD,,
|