mocap-desktop-gui 0.4.0__py3-none-any.whl → 0.4.2__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 +3 -3
- mocap_desktop_gui/axengine_1727360251_498228821.py +246 -0
- mocap_desktop_gui/gen/rc_icons.py +3 -3
- mocap_desktop_gui/gen/rc_qml.py +3 -3
- mocap_desktop_gui/gen/rc_style.py +3 -3
- mocap_desktop_gui/main.py +3 -3
- mocap_desktop_gui/mc/__init__.py +3 -3
- mocap_desktop_gui/mc/bld_fbx_2_glb.py +3 -3
- mocap_desktop_gui/mc/camera_models.py +3 -3
- mocap_desktop_gui/mc/mc_app_manager.py +3 -3
- mocap_desktop_gui/mc/mc_calib.py +3 -3
- mocap_desktop_gui/mc/mc_cam_ui_states.py +3 -3
- mocap_desktop_gui/mc/mc_common_paths.py +3 -3
- mocap_desktop_gui/mc/mc_context.py +3 -3
- mocap_desktop_gui/mc/mc_file_util.py +3 -3
- mocap_desktop_gui/mc/mc_import_folder.py +3 -3
- mocap_desktop_gui/mc/mc_project.py +3 -3
- mocap_desktop_gui/mc/mc_project_manager.py +3 -3
- mocap_desktop_gui/mc/mc_sync_media_player.py +3 -3
- mocap_desktop_gui/mc/mc_sync_video_decoder_service.py +3 -3
- mocap_desktop_gui/mc/mc_sync_video_paint_item.py +3 -3
- mocap_desktop_gui/mc/mc_take.py +3 -3
- mocap_desktop_gui/mc/mc_take_list_model.py +3 -3
- mocap_desktop_gui/mc/mc_take_run.py +3 -3
- mocap_desktop_gui/mc/mc_take_run_data_prep.py +3 -3
- mocap_desktop_gui/mc/mc_take_run_settings.py +3 -3
- mocap_desktop_gui/mc/mc_take_runs_manager.py +3 -3
- mocap_desktop_gui/mc/mc_take_settings.py +3 -3
- mocap_desktop_gui/mc/mc_take_video_model.py +3 -3
- mocap_desktop_gui/mc/mc_task_trt_engine_gen.py +3 -3
- mocap_desktop_gui/mc/qml_engine.py +3 -3
- mocap_desktop_gui/mc/util.py +3 -3
- mocap_desktop_gui/operations/__init__.py +3 -3
- mocap_desktop_gui/sample.py +3 -3
- mocap_desktop_gui/utils/__init__.py +3 -3
- {mocap_desktop_gui-0.4.0.dist-info → mocap_desktop_gui-0.4.2.dist-info}/METADATA +1 -2
- mocap_desktop_gui-0.4.2.dist-info/RECORD +48 -0
- mocap_desktop_gui/axengine_1726838626_896239065.py +0 -246
- mocap_desktop_gui-0.4.0.dist-info/RECORD +0 -48
- {mocap_desktop_gui-0.4.0.dist-info → mocap_desktop_gui-0.4.2.dist-info}/WHEEL +0 -0
- {mocap_desktop_gui-0.4.0.dist-info → mocap_desktop_gui-0.4.2.dist-info}/entry_points.txt +0 -0
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_1727360251_498228821.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_1727360251_498228821 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_1727360251_498228821 import WupiError, WupiLicenseError, WupiErrorCode
|
18
18
|
_axengine._axe_run(261, 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_1727360251_498228821.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_1727360251_498228821 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_1727360251_498228821 import WupiError, WupiLicenseError, WupiErrorCode
|
18
18
|
_axengine._axe_run(12, 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_1727360251_498228821.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_1727360251_498228821 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_1727360251_498228821 import WupiError, WupiLicenseError, WupiErrorCode
|
18
18
|
_axengine._axe_run(10, 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_1727360251_498228821.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_1727360251_498228821 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_1727360251_498228821 import WupiError, WupiLicenseError, WupiErrorCode
|
18
18
|
_axengine._axe_run(11, globals())
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: mocap-desktop-gui
|
3
|
-
Version: 0.4.
|
3
|
+
Version: 0.4.2
|
4
4
|
Summary:
|
5
5
|
Author: Move.ai
|
6
6
|
Requires-Python: >=3.10,<3.13
|
@@ -9,7 +9,6 @@ Classifier: Programming Language :: Python :: 3.10
|
|
9
9
|
Classifier: Programming Language :: Python :: 3.11
|
10
10
|
Classifier: Programming Language :: Python :: 3.12
|
11
11
|
Requires-Dist: PySide6 (>=6.7.2)
|
12
|
-
Requires-Dist: mocap-base (>=1.1.18,<2.0.0)
|
13
12
|
Requires-Dist: moviepy (>=1.0.3,<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,48 @@
|
|
1
|
+
mocap_desktop_gui/__init__.py,sha256=yHbw37e2IjzY4KLoMfNOiHKy3pD1tvRBrHnvp0zVpxM,723
|
2
|
+
mocap_desktop_gui/axengine_1727360251_498228821.py,sha256=ATvC4u2hubCoaR2tXxWui8zxbO281FjL6irugucKz1Q,363548
|
3
|
+
mocap_desktop_gui/gen/rc_icons.py,sha256=9xq2npj6jP495kUxqUb-OvsJg23gwV6kJG942gtnGLY,721
|
4
|
+
mocap_desktop_gui/gen/rc_qml.py,sha256=aLsg8qtrQrcLKgqLaDVPeOyUJJCHpw4B6g7Neakesjc,721
|
5
|
+
mocap_desktop_gui/gen/rc_style.py,sha256=iXerGfUp_X9pDU_G2Qw-aTNNjP9Gp3ei6UIqBs87z8o,721
|
6
|
+
mocap_desktop_gui/main.py,sha256=hWFeLF5OnsY1DAWRphMjp87-lPi1sjomVShRZm7KLis,723
|
7
|
+
mocap_desktop_gui/mc/__init__.py,sha256=VYOSlnUq8UWXmlVhJKrZnge6ueX_GzsGVGNajvbgcsk,723
|
8
|
+
mocap_desktop_gui/mc/bld_fbx_2_glb.py,sha256=oxXPY6t6GcAxGzt3sD32s7EXRjRCAHK_g0fNUGYrbZg,723
|
9
|
+
mocap_desktop_gui/mc/camera_models.py,sha256=z3aNQga1h0OnsCPylzx3TMbAqDwizIM4MBmv9oSXvq8,722
|
10
|
+
mocap_desktop_gui/mc/mc_app_manager.py,sha256=55cIcxTfM4hQjLXYqqwQ_N1Yp5PB051Dd4huhRQ6XQk,722
|
11
|
+
mocap_desktop_gui/mc/mc_calib.py,sha256=UBI1T-PptCYKATzSax7ruxPCKLC5mN8cG_pMou59nJ8,723
|
12
|
+
mocap_desktop_gui/mc/mc_cam_ui_states.py,sha256=O7hYaPk5D9_CBU-LcLY8nT3SgDHy35stIiYKRerkXLk,723
|
13
|
+
mocap_desktop_gui/mc/mc_common_paths.py,sha256=ioW9AZ0A7-n49SOIcj2u02XaUYOAZb7WRbI3MjcV8zY,722
|
14
|
+
mocap_desktop_gui/mc/mc_context.py,sha256=Do31tqeeqjIJEjqSvynVl6Kjq-g3m-juEoGYIsqOimw,723
|
15
|
+
mocap_desktop_gui/mc/mc_file_util.py,sha256=Fu2cL0kT5riIWpKmA2en6mhv3uy0iAm9475-CrhwHnY,723
|
16
|
+
mocap_desktop_gui/mc/mc_import_folder.py,sha256=CwSl9tCEdCSou4MLkNlekjRrN-tzxHex8huRq_st4lw,723
|
17
|
+
mocap_desktop_gui/mc/mc_project.py,sha256=kGZzwH4NdZlG9EbON7pep7YdNtOQK8CqxupslaVPKJg,723
|
18
|
+
mocap_desktop_gui/mc/mc_project_manager.py,sha256=G2s7_zyvWUxFzqhNc9RuhLG6nt2estICiOGBfbhTRCg,723
|
19
|
+
mocap_desktop_gui/mc/mc_sync_media_player.py,sha256=XXFSXpEpV_AW_kShtmpBu2E153yN9Svm2aBqNkWx-x4,723
|
20
|
+
mocap_desktop_gui/mc/mc_sync_video_decoder_service.py,sha256=e7JjAYow0PmqKeGHafJ5mAdxyfieOm_271ORGD9Mssk,722
|
21
|
+
mocap_desktop_gui/mc/mc_sync_video_paint_item.py,sha256=Oy-xSQSBLdUXYyuLKGN6saVJXykSNwxoLxPq4yP2C1A,723
|
22
|
+
mocap_desktop_gui/mc/mc_take.py,sha256=VAT6eP0vGii9UJawSfgHJhjt2tsgr_7mpFXFBbkS7Zk,723
|
23
|
+
mocap_desktop_gui/mc/mc_take_list_model.py,sha256=9dkBY5C65TjXi9Bwf_qK7eb4wNyXKxuBQP44PpTkEjw,722
|
24
|
+
mocap_desktop_gui/mc/mc_take_run.py,sha256=ncs90fkOLI_YBEY7s0WUQ2--19WENlqwFA7wg15EnOw,723
|
25
|
+
mocap_desktop_gui/mc/mc_take_run_data_prep.py,sha256=kgoE45M9Ms2KJUfy6Hw_O0PQTIlWnrX8RYDeiV521rc,723
|
26
|
+
mocap_desktop_gui/mc/mc_take_run_settings.py,sha256=7PseWnCUBUJIICOvx9W7WaINZShdSyqGaGrsOc9Trho,722
|
27
|
+
mocap_desktop_gui/mc/mc_take_runs_manager.py,sha256=Q5cqyJVJMIcMwqdhfflC03U0DSfvIigMXuK5pOIETIs,723
|
28
|
+
mocap_desktop_gui/mc/mc_take_settings.py,sha256=WRIRjl4PhNNaJYhBkPVRBvueJIedAT6Ti8I4xsnb8OU,723
|
29
|
+
mocap_desktop_gui/mc/mc_take_video_model.py,sha256=0CLGvB2MyTxoxrHsxNPyclj7sPUSHIOCrsMXC0I6auY,722
|
30
|
+
mocap_desktop_gui/mc/mc_task_trt_engine_gen.py,sha256=bFPMmJxTgS4U30OuMOYMJO9z9uWonU_f658bIh1Aags,723
|
31
|
+
mocap_desktop_gui/mc/qml_engine.py,sha256=D1YCohSm6F_MBL9-uirWm4SIWtJyc95IAx7GbQgtgT0,723
|
32
|
+
mocap_desktop_gui/mc/rig/Move_Mo.blend,sha256=rNN1yapGy_ok0rd5BFO7ldkTcNeeROnIrmKa2COA_Ic,29633272
|
33
|
+
mocap_desktop_gui/mc/rig/mapping_body.csv,sha256=CaJ9SLWvXNFU44ft-VI9Br4US2hmdLoMh8w8KnXvHHg,551
|
34
|
+
mocap_desktop_gui/mc/rig/mapping_fingers.csv,sha256=cy1EX5aJTRjE3dQLe9YsdrGUsxGqPjYupb99fMw_k18,1030
|
35
|
+
mocap_desktop_gui/mc/rig/sdc_rig.zip,sha256=hYCBzYFZKuSr15Xs0nql-iD6aLpuTzy-_5o2CyZjiJE,9022411
|
36
|
+
mocap_desktop_gui/mc/scene/scene_3d.blend.5a95cd45,sha256=YBmgAeDqATPeJfra3WrblJ3qpn8QfPtbh4W5Elvn0bM,31290788
|
37
|
+
mocap_desktop_gui/mc/settings/camera_models.yaml,sha256=cokr4yWMbTTw2X0ObvBIM_j9HWqgBa4QHqSDlF_XpSo,3320
|
38
|
+
mocap_desktop_gui/mc/settings/settings_action.yaml,sha256=3Yq7q5Vl4fagyFNma7CBITGgOqA8FMRSFjJiTCBeC_Y,18133
|
39
|
+
mocap_desktop_gui/mc/settings/settings_extrinsic.yaml,sha256=BUnBgmHlD-JWLKtvciwY7ekhznsANRYvPPH_Hs_GI2s,6482
|
40
|
+
mocap_desktop_gui/mc/util.py,sha256=VhwULAbBz_ITF0PXTr_aJlwBdzla6qcYQcy_bi2aY30,723
|
41
|
+
mocap_desktop_gui/operations/__init__.py,sha256=Yuk5iMzs0rbV_x7FhIOkwp5PP0VaSLOu8H81Oafv_wc,722
|
42
|
+
mocap_desktop_gui/sample.py,sha256=xpXFidfAWRRMoPeU06MaSw6PX14Zz9fklTpoMj3EKUY,722
|
43
|
+
mocap_desktop_gui/settings.ini,sha256=kBwDIpL74uLZhID3_yaECygFKftAyevRrN7PRcjpVvc,131
|
44
|
+
mocap_desktop_gui/utils/__init__.py,sha256=_avB0rjIrtP1IVEz72_hQXoTCOElzc5Laa8xDEjiTlw,722
|
45
|
+
mocap_desktop_gui-0.4.2.dist-info/METADATA,sha256=Ien5guslax3U3u17dgK_-L4wsPFaIlgYeiTRMM1iOJ4,930
|
46
|
+
mocap_desktop_gui-0.4.2.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
47
|
+
mocap_desktop_gui-0.4.2.dist-info/entry_points.txt,sha256=xMiDqkrscETVFaPjOzROvqLLQqlaurQKY-U4nPckFog,64
|
48
|
+
mocap_desktop_gui-0.4.2.dist-info/RECORD,,
|