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(11, 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(14, 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(8, 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(5, 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(266, 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(328, 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(161, 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(209, 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(324, 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(339, 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(273, 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(186, 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(100, 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(152, 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(40, 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(26, 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(295, 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(253, 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(50, 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(113, 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(281, 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(181, 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(78, 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(172, 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(58, 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(265, 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(175, globals())
|
Binary file
|
@@ -0,0 +1,21 @@
|
|
1
|
+
Reference,Deform_rig,Rot_offset_value,Rot_offset_axis,ue2rigify_template,Controllers
|
2
|
+
RightArm,RightArm,,,,
|
3
|
+
RightForeArm,RightForeArm,,,,
|
4
|
+
RightHand,RightHand,,,,
|
5
|
+
LeftArm,LeftArm,,,,
|
6
|
+
LeftForeArm,LeftForeArm,,,,
|
7
|
+
LeftHand,LeftHand,,,,
|
8
|
+
Hips,Hips,,,,
|
9
|
+
Spine,Spine,,,,
|
10
|
+
Spine1,Spine1,,,,
|
11
|
+
Head,Head,,,,
|
12
|
+
RightUpLeg,RightUpLeg,,,,
|
13
|
+
RightLeg,RightLeg,,,,
|
14
|
+
RightFoot,RightFoot,,,,
|
15
|
+
LeftUpLeg,LeftUpLeg,,,,
|
16
|
+
LeftLeg,LeftLeg,,,,
|
17
|
+
LeftFoot,LeftFoot,,,,
|
18
|
+
LeftToeBase,LeftToeBase,,,,
|
19
|
+
RightToeBase,RightToeBase,,,,
|
20
|
+
RightShoulder,RightShoulder,,,,
|
21
|
+
LeftShoulder,LeftShoulder,,,,
|
@@ -0,0 +1,31 @@
|
|
1
|
+
Reference,Deform_rig,Rot_offset_value,Rot_offset_axis,,Controllers
|
2
|
+
thumb.01.R,RightHandThumb1,,,,
|
3
|
+
thumb.02.R,RightHandThumb2,,,,
|
4
|
+
thumb.03.R,RightHandThumb3,,,,
|
5
|
+
f_index.01.R,RightHandIndex1,,,,
|
6
|
+
f_index.02.R,RightHandIndex2,,,,
|
7
|
+
f_index.03.R,RightHandIndex3,,,,
|
8
|
+
f_middle.01.R,RightHandMiddle1,,,,
|
9
|
+
f_middle.02.R,RightHandMiddle2,,,,
|
10
|
+
f_middle.03.R,RightHandMiddle3,,,,
|
11
|
+
f_ring.01.R,RightHandRing1,,,,
|
12
|
+
f_ring.02.R,RightHandRing2,,,,
|
13
|
+
f_ring.03.R,RightHandRing3,,,,
|
14
|
+
f_pinky.01.R,RightHandPinky1,,,,
|
15
|
+
f_pinky.02.R,RightHandPinky2,,,,
|
16
|
+
f_pinky.03.R,RightHandPinky3,,,,
|
17
|
+
thumb.01.L,LeftHandThumb1,,,,
|
18
|
+
thumb.02.L,LeftHandThumb2,,,,
|
19
|
+
thumb.03.L,LeftHandThumb3,,,,
|
20
|
+
f_index.01.L,LeftHandIndex1,,,,
|
21
|
+
f_index.02.L,LeftHandIndex2,,,,
|
22
|
+
f_index.03.L,LeftHandIndex3,,,,
|
23
|
+
f_middle.01.L,LeftHandMiddle1,,,,
|
24
|
+
f_middle.02.L,LeftHandMiddle2,,,,
|
25
|
+
f_middle.03.L,LeftHandMiddle3,,,,
|
26
|
+
f_ring.01.L,LeftHandRing1,,,,
|
27
|
+
f_ring.02.L,LeftHandRing2,,,,
|
28
|
+
f_ring.03.L,LeftHandRing3,,,,
|
29
|
+
f_pinky.01.L,LeftHandPinky1,,,,
|
30
|
+
f_pinky.02.L,LeftHandPinky2,,,,
|
31
|
+
f_pinky.03.L,LeftHandPinky3,,,,
|
Binary file
|
Binary file
|
@@ -0,0 +1,71 @@
|
|
1
|
+
GoProHero7_FHD:
|
2
|
+
K: [ [ 1.03836777e03, 0.0, 9.53059792e02 ], [ 0.0, 1.02914725e03, 7.19211153e02 ], [ 0.0, 0.0, 1.0 ] ]
|
3
|
+
|
4
|
+
GoProHero7_4K:
|
5
|
+
K: [ [ 1.46454969e03, 0.0, 1.34363719e03 ], [ 0.0, 1.45111706e03, 1.01609828e03 ], [ 0.0, 0.0, 1.0 ] ]
|
6
|
+
|
7
|
+
GoProHero8_FHD:
|
8
|
+
K: [ [ 913.31952603, 0, 966.48029123 ],[ 0, 928.06063871, 536.91995022 ],[ 0.0, 0.0, 1.0 ] ]
|
9
|
+
|
10
|
+
GoProHero8_4K:
|
11
|
+
K: [ [ 1.83729901e03, 0.0, 1.93477133e03 ], [ 0.0, 1.83729901e03, 1.08160072e03 ], [ 0.0, 0.0, 1.0 ] ]
|
12
|
+
|
13
|
+
GoProHero9_FHD:
|
14
|
+
K: [ [ 914.88928072, 0.0, 964.98275908 ], [ 0.0, 918.17114862, 542.2227195 ], [ 0.0, 0.0, 1.0 ] ]
|
15
|
+
|
16
|
+
GoProHero9_27K:
|
17
|
+
K: [ [ 1290.0, 0.0, 1350.0 ], [ 0.0, 1292.0, 760.0 ], [ 0.0, 0.0, 1.0 ] ]
|
18
|
+
|
19
|
+
GoProHero9_4K:
|
20
|
+
K: [ [ 1841.0, 0.0, 1916.0 ], [ 0.0, 1839.0, 1075.0 ], [ 0.0, 0.0, 1 ] ]
|
21
|
+
|
22
|
+
GoProGeneric_FHD:
|
23
|
+
K: [ [ 923.76251909, 0.0, 961.89882368 ], [ 0.0, 925.86015022, 558.33009176 ], [ 0.0, 0.0, 1 ] ]
|
24
|
+
|
25
|
+
GoProHero10_FHD:
|
26
|
+
K: [ [ 923.76251909, 0.0, 961.89882368 ], [ 0.0, 925.86015022, 558.33009176 ], [ 0.0, 0.0, 1 ] ]
|
27
|
+
|
28
|
+
GoProHero10_2_7K:
|
29
|
+
K: [ [ 1.28814164e03, 0.0, 1.34438403e03 ], [ 0.0, 1.28837001e03, 7.67022416e02 ], [ 0.0, 0.0, 1 ] ]
|
30
|
+
|
31
|
+
GoProHero10_4K:
|
32
|
+
K: [ [ 1.84593283e03, 0.0, 1.92970185e03 ], [ 0.0, 1.84939341e03, 1.11025830e03 ], [ 0.0, 0.0, 1 ] ]
|
33
|
+
|
34
|
+
GoProGeneric_4K:
|
35
|
+
K: [ [ 1.84593283e03, 0.0, 1.92970185e03 ], [ 0.0, 1.84939341e03, 1.11025830e03 ], [ 0.0, 0.0, 1 ] ]
|
36
|
+
|
37
|
+
GoProHero10_4K_Portrait:
|
38
|
+
K: [ [ 1.83288226e03, 0.0, 1.07586540e03 ], [ 0.0, 1.83375021e03, 1.92896515e03 ], [ 0.0, 0.0, 1 ] ]
|
39
|
+
|
40
|
+
GoProHero11_FHD:
|
41
|
+
K: [ [ 917.49674317, 0.00000000e00, 961.21364456 ], [ 0.00000000e00, 916.75533075, 533.88829747 ], [ 0.00000000e00, 0.00000000e00, 1.00000000e00 ] ]
|
42
|
+
|
43
|
+
GoProHero11_2_7K:
|
44
|
+
K: [ [ 1.29073898e03, 0.00000000e00, 1.35405292e03 ], [ 0.00000000e00, 1.28899975e03, 7.51801242e02 ], [ 0.00000000e00, 0.00000000e00, 1.00000000e00 ] ]
|
45
|
+
|
46
|
+
GoProHero11_4K:
|
47
|
+
K: [ [ 1.84035443e03, 0.00000000e00, 1.92831725e03 ], [ 0.00000000e00, 1.83871550e03, 1.07960054e03 ], [ 0.00000000e00, 0.00000000e00, 1.00000000e00 ] ]
|
48
|
+
|
49
|
+
GoProHero12_FHD:
|
50
|
+
K: [ [ 916.67657363, 0.00000000e00, 965.13591815 ], [ 0.00000000e00, 917.43235584, 534.91913807 ], [ 0.00000000e00, 0.00000000e00, 1.00000000e00 ] ]
|
51
|
+
|
52
|
+
GoProHero12_2_7K:
|
53
|
+
K: [ [ 1.29224624e03, 0.00000000e00, 1.35766015e03 ], [ 0.00000000e00, 1.29301359e03, 7.60591900e02 ], [ 0.00000000e00, 0.00000000e00, 1.00000000e00 ] ]
|
54
|
+
|
55
|
+
GoProHero12_4K:
|
56
|
+
K: [ [ 1.83412922e03, 0.00000000e00, 1.93084962e03 ], [ 0.00000000e00, 1.83650789e03, 1.08014915e03 ], [ 0.00000000e00, 0.00000000e00, 1.00000000e00 ] ]
|
57
|
+
|
58
|
+
Sony_RX0_I_1280x720:
|
59
|
+
K: [ [ 863.80827164, 0.0, 632.7234739 ], [ 0.0, 863.80827164, 363.95934155 ], [ 0.00000000e00, 0.00000000e00, 1.00000000e00 ] ]
|
60
|
+
|
61
|
+
Sony_Synced_FHD:
|
62
|
+
K: [[1.29357165e03, 0.00000000e00, 9.55895638e02], [0.00000000e00, 1.28891128e03, 5.41381367e02], [0.00000000e00, 0.00000000e00, 1.00000000e00]]
|
63
|
+
|
64
|
+
OptiTrack_Prime41:
|
65
|
+
K: [ [ 2.16063e03, 0.00000e00, 1.04008e03 ], [ 0.00000e00, 2.16124e03, 1.05735e03 ], [ 0.00000e00, 0.00000e00, 1.00000e00 ] ]
|
66
|
+
|
67
|
+
OptiTrack_Prime_Color_68mm_FHD:
|
68
|
+
K: [ [ 1.20237482e03, 0.0, 9.86672131e02 ], [ 0.0, 1.20199129e03, 5.07783768e02 ], [ 0.00000e00, 0.00000e00, 1.00000e00 ] ]
|
69
|
+
|
70
|
+
OptiTrack_Prime_Color_12mm_FHD:
|
71
|
+
K: [ [ 1.19263e03, 0.00000e00, 9.49837e02 ], [ 0.00000e00, 1.19247e03, 5.43181e02 ], [ 0.00000e00, 0.00000e00, 1.00000e00 ] ]
|