mocap-calibration 2.2.3__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.
Files changed (71) hide show
  1. mocap_calibration/__init__.py +18 -0
  2. mocap_calibration/axengine_1722438568_2868079462.py +246 -0
  3. mocap_calibration/calibration/__init__.py +18 -0
  4. mocap_calibration/calibration/aruco/__init__.py +18 -0
  5. mocap_calibration/calibration/aruco/main_calib_aruco.py +18 -0
  6. mocap_calibration/calibration/aruco/ppl_calib_aruco.py +18 -0
  7. mocap_calibration/calibration/ba.py +18 -0
  8. mocap_calibration/calibration/calib_from_metadata.py +18 -0
  9. mocap_calibration/calibration/calib_obj/__init__.py +18 -0
  10. mocap_calibration/calibration/calib_obj/calibration_obj.py +18 -0
  11. mocap_calibration/calibration/calib_obj/detect_calib_obj.py +18 -0
  12. mocap_calibration/calibration/calib_obj/pair_calib_obj.py +18 -0
  13. mocap_calibration/calibration/calib_obj/tests/__init__.py +18 -0
  14. mocap_calibration/calibration/calib_obj/tests/aruco_calib.py +18 -0
  15. mocap_calibration/calibration/calib_obj/tests/calib_football_court.py +18 -0
  16. mocap_calibration/calibration/calib_obj/tests/calibration_obj_test.py +18 -0
  17. mocap_calibration/calibration/calib_obj/tests/check_aruco_with_gt.py +18 -0
  18. mocap_calibration/calibration/calib_obj/tests/detect_lines.py +18 -0
  19. mocap_calibration/calibration/calib_obj/tests/manual_calibration.py +18 -0
  20. mocap_calibration/calibration/calib_obj/tests/solvePnP.py +18 -0
  21. mocap_calibration/calibration/calib_obj/tests/vis_aruco_calib.py +18 -0
  22. mocap_calibration/calibration/calib_obj/tests/vis_manual_calib.py +18 -0
  23. mocap_calibration/calibration/calib_obj/utils.py +18 -0
  24. mocap_calibration/calibration/calib_utils.py +18 -0
  25. mocap_calibration/calibration/calibration.py +18 -0
  26. mocap_calibration/calibration/cam_intrinsics/__init__.py +18 -0
  27. mocap_calibration/calibration/cam_intrinsics/calc_intrinsics.py +18 -0
  28. mocap_calibration/calibration/cam_intrinsics/calc_intrinsics_app.py +18 -0
  29. mocap_calibration/calibration/cam_intrinsics/intrinsic_calib.sh +5 -0
  30. mocap_calibration/calibration/cam_intrinsics/set_webcam_settings.sh +4 -0
  31. mocap_calibration/calibration/cam_intrinsics/undistort_app.py +18 -0
  32. mocap_calibration/calibration/cam_intrinsics/undistort_img.py +18 -0
  33. mocap_calibration/calibration/cam_intrinsics/undistort_video.py +18 -0
  34. mocap_calibration/calibration/cam_intrinsics/undistort_videos_from_json.py +18 -0
  35. mocap_calibration/calibration/filtering.py +18 -0
  36. mocap_calibration/calibration/floor_plane.py +18 -0
  37. mocap_calibration/calibration/geometry_3d.py +18 -0
  38. mocap_calibration/calibration/homography.py +18 -0
  39. mocap_calibration/calibration/kalman_calib.py +18 -0
  40. mocap_calibration/calibration/pair_cam_calib.py +18 -0
  41. mocap_calibration/calibration/ppl_calib_utils.py +18 -0
  42. mocap_calibration/calibration/quality.py +18 -0
  43. mocap_calibration/calibration/refine_calib.py +18 -0
  44. mocap_calibration/calibration/report.py +18 -0
  45. mocap_calibration/calibration/tests/__init__.py +18 -0
  46. mocap_calibration/calibration/tests/bias_analysis.py +18 -0
  47. mocap_calibration/calibration/tests/calc_calib_bias.py +18 -0
  48. mocap_calibration/calibration/tests/calib_EA8K_json.py +18 -0
  49. mocap_calibration/calibration/tests/calib_covered_area.py +18 -0
  50. mocap_calibration/calibration/tests/calib_from_json.py +18 -0
  51. mocap_calibration/calibration/tests/calib_from_xml.py +18 -0
  52. mocap_calibration/calibration/tests/calib_spectrum_json.py +18 -0
  53. mocap_calibration/calibration/tests/main_calib_pair.py +18 -0
  54. mocap_calibration/calibration/tests/main_check_calib.py +18 -0
  55. mocap_calibration/calibration/tests/main_fast_calib.py +18 -0
  56. mocap_calibration/calibration/tests/main_floor_plane.py +18 -0
  57. mocap_calibration/calibration/tests/main_multi_calib.py +18 -0
  58. mocap_calibration/calibration/tests/main_recalib_with_homography.py +18 -0
  59. mocap_calibration/calibration/tests/main_recalibrate.py +18 -0
  60. mocap_calibration/calibration/tests/main_report.py +18 -0
  61. mocap_calibration/calibration/tests/main_vis_cameras.py +18 -0
  62. mocap_calibration/calibration/tests/pose_iphone.py +18 -0
  63. mocap_calibration/operations/__init__.py +18 -0
  64. mocap_calibration/operations/opsCalibrate.py +18 -0
  65. mocap_calibration/operations/opsCalibrateAruco.py +18 -0
  66. mocap_calibration/operations/opsCorrectCalib.py +18 -0
  67. mocap_calibration/operations/opsReportCalib.py +18 -0
  68. mocap_calibration/operations/opsVisualization.py +18 -0
  69. mocap_calibration-2.2.3.dist-info/METADATA +38 -0
  70. mocap_calibration-2.2.3.dist-info/RECORD +71 -0
  71. mocap_calibration-2.2.3.dist-info/WHEEL +4 -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_1722438568_2868079462.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_1722438568_2868079462 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_1722438568_2868079462 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(377, 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_1722438568_2868079462.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_1722438568_2868079462 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_1722438568_2868079462 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(126, 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_1722438568_2868079462.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_1722438568_2868079462 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_1722438568_2868079462 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(121, 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_1722438568_2868079462.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_1722438568_2868079462 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_1722438568_2868079462 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(125, 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_1722438568_2868079462.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_1722438568_2868079462 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_1722438568_2868079462 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(376, 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_1722438568_2868079462.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_1722438568_2868079462 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_1722438568_2868079462 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(158, 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_1722438568_2868079462.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_1722438568_2868079462 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_1722438568_2868079462 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(329, 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_1722438568_2868079462.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_1722438568_2868079462 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_1722438568_2868079462 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_1722438568_2868079462.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_1722438568_2868079462 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_1722438568_2868079462 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_1722438568_2868079462.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_1722438568_2868079462 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_1722438568_2868079462 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(258, 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_1722438568_2868079462.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_1722438568_2868079462 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_1722438568_2868079462 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(317, 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_1722438568_2868079462.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_1722438568_2868079462 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_1722438568_2868079462 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(316, 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_1722438568_2868079462.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_1722438568_2868079462 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_1722438568_2868079462 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_1722438568_2868079462.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_1722438568_2868079462 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_1722438568_2868079462 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(301, 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_1722438568_2868079462.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_1722438568_2868079462 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_1722438568_2868079462 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(313, 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_1722438568_2868079462.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_1722438568_2868079462 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_1722438568_2868079462 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(292, 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_1722438568_2868079462.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_1722438568_2868079462 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_1722438568_2868079462 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(280, 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_1722438568_2868079462.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_1722438568_2868079462 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_1722438568_2868079462 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(307, 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_1722438568_2868079462.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_1722438568_2868079462 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_1722438568_2868079462 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(298, 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_1722438568_2868079462.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_1722438568_2868079462 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_1722438568_2868079462 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(283, 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_1722438568_2868079462.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_1722438568_2868079462 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_1722438568_2868079462 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_1722438568_2868079462.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_1722438568_2868079462 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_1722438568_2868079462 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(138, 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_1722438568_2868079462.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_1722438568_2868079462 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_1722438568_2868079462 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(231, 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_1722438568_2868079462.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_1722438568_2868079462 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_1722438568_2868079462 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(52, 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_1722438568_2868079462.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_1722438568_2868079462 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_1722438568_2868079462 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(51, 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_1722438568_2868079462.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_1722438568_2868079462 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_1722438568_2868079462 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(33, globals())
@@ -0,0 +1,5 @@
1
+ # activate anaconda
2
+ cd /media/F/moveai/codes/motion_extraction/calibration/cam_intrinsics
3
+ source ~/anaconda3/etc/profile.d/conda.sh
4
+ conda activate mocap
5
+ python ./calc_intrinsics_app.py --video_dir "$1" --out_dir "$2" --viz_dir "$3"
@@ -0,0 +1,4 @@
1
+ v4l2-ctl -d /dev/video0 -p 30
2
+ v4l2-ctl -d /dev/video0 -p 30
3
+ v4l2-ctl -d /dev/video0 -set-ctrl 30
4
+ v4l2-ctl -d /dev/video0 -p 30
@@ -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_1722438568_2868079462.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_1722438568_2868079462 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_1722438568_2868079462 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(41, 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_1722438568_2868079462.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_1722438568_2868079462 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_1722438568_2868079462 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(25, 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_1722438568_2868079462.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_1722438568_2868079462 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_1722438568_2868079462 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(45, 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_1722438568_2868079462.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_1722438568_2868079462 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_1722438568_2868079462 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(43, 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_1722438568_2868079462.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_1722438568_2868079462 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_1722438568_2868079462 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(382, 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_1722438568_2868079462.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_1722438568_2868079462 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_1722438568_2868079462 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(249, globals())