mocap-calibration 2.7.0__py3-none-any.whl → 2.9.0__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 (83) hide show
  1. mocap_calibration/__init__.py +4 -4
  2. mocap_calibration/axengine_1737998002_80099543.py +246 -0
  3. mocap_calibration/{assess → calib_eval}/__init__.py +4 -4
  4. mocap_calibration/{assess/assess_using_manual_keypoints.py → calib_eval/calib_eval_with_manual_kpts.py} +4 -4
  5. mocap_calibration/calibration/__init__.py +4 -4
  6. mocap_calibration/calibration/aruco/__init__.py +4 -4
  7. mocap_calibration/calibration/aruco/aruco_calib.py +4 -4
  8. mocap_calibration/calibration/aruco/main_calib_aruco.py +4 -4
  9. mocap_calibration/calibration/aruco/ppl_calib_aruco.py +4 -4
  10. mocap_calibration/calibration/aruco/quality.py +4 -4
  11. mocap_calibration/calibration/calib_obj/__init__.py +4 -4
  12. mocap_calibration/calibration/calib_obj/calibration_obj.py +4 -4
  13. mocap_calibration/calibration/calib_obj/detect_calib_obj.py +4 -4
  14. mocap_calibration/calibration/calib_obj/pair_calib_obj.py +4 -4
  15. mocap_calibration/calibration/calib_obj/tests/__init__.py +4 -4
  16. mocap_calibration/calibration/calib_obj/tests/aruco_calib.py +4 -4
  17. mocap_calibration/calibration/calib_obj/tests/calib_football_court.py +4 -4
  18. mocap_calibration/calibration/calib_obj/tests/calibration_obj_test.py +4 -4
  19. mocap_calibration/calibration/calib_obj/tests/check_aruco_with_gt.py +4 -4
  20. mocap_calibration/calibration/calib_obj/tests/detect_lines.py +4 -4
  21. mocap_calibration/calibration/calib_obj/tests/manual_calibration.py +4 -4
  22. mocap_calibration/calibration/calib_obj/tests/solvePnP.py +4 -4
  23. mocap_calibration/calibration/calib_obj/tests/vis_aruco_calib.py +4 -4
  24. mocap_calibration/calibration/calib_obj/tests/vis_manual_calib.py +4 -4
  25. mocap_calibration/calibration/calib_obj/utils.py +4 -4
  26. mocap_calibration/calibration/cam_intrinsics/__init__.py +4 -4
  27. mocap_calibration/calibration/cam_intrinsics/calc_intrinsics.py +4 -4
  28. mocap_calibration/calibration/cam_intrinsics/calc_intrinsics_app.py +4 -4
  29. mocap_calibration/calibration/cam_intrinsics/undistort_app.py +4 -4
  30. mocap_calibration/calibration/cam_intrinsics/undistort_img.py +4 -4
  31. mocap_calibration/calibration/cam_intrinsics/undistort_video.py +4 -4
  32. mocap_calibration/calibration/cam_intrinsics/undistort_videos_from_json.py +4 -4
  33. mocap_calibration/calibration/humanCalib/__init__.py +4 -4
  34. mocap_calibration/calibration/humanCalib/ba.py +4 -4
  35. mocap_calibration/calibration/humanCalib/floor_plane.py +4 -4
  36. mocap_calibration/calibration/humanCalib/human_calib.py +4 -4
  37. mocap_calibration/calibration/humanCalib/human_calib_pair.py +4 -4
  38. mocap_calibration/calibration/humanCalib/ppl_calib_human.py +4 -4
  39. mocap_calibration/calibration/humanCalib/quality.py +4 -4
  40. mocap_calibration/calibration/humanCalib/report.py +4 -4
  41. mocap_calibration/calibration/humanCalib/utils/__init__.py +4 -4
  42. mocap_calibration/calibration/humanCalib/utils/ba_utils.py +4 -4
  43. mocap_calibration/calibration/humanCalib/utils/calib_utils.py +4 -4
  44. mocap_calibration/calibration/humanCalib/utils/filtering.py +4 -4
  45. mocap_calibration/calibration/humanCalib/utils/geometry_3d.py +4 -4
  46. mocap_calibration/calibration/humanCalib/utils/refine_calib.py +4 -4
  47. mocap_calibration/calibration/interfaces/__init__.py +4 -4
  48. mocap_calibration/calibration/interfaces/calib_template.py +4 -4
  49. mocap_calibration/calibration/interfaces/pair_calib_template.py +4 -4
  50. mocap_calibration/calibration/interfaces/structures.py +4 -4
  51. mocap_calibration/calibration/tests/__init__.py +4 -4
  52. mocap_calibration/calibration/tests/bias_analysis.py +4 -4
  53. mocap_calibration/calibration/tests/calc_calib_bias.py +4 -4
  54. mocap_calibration/calibration/tests/calib_EA8K_json.py +4 -4
  55. mocap_calibration/calibration/tests/calib_covered_area.py +4 -4
  56. mocap_calibration/calibration/tests/calib_from_json.py +4 -4
  57. mocap_calibration/calibration/tests/calib_from_xml.py +4 -4
  58. mocap_calibration/calibration/tests/calib_spectrum_json.py +4 -4
  59. mocap_calibration/calibration/tests/main_calib_pair.py +4 -4
  60. mocap_calibration/calibration/tests/main_check_calib.py +4 -4
  61. mocap_calibration/calibration/tests/main_fast_calib.py +4 -4
  62. mocap_calibration/calibration/tests/main_floor_plane.py +4 -4
  63. mocap_calibration/calibration/tests/main_multi_calib.py +4 -4
  64. mocap_calibration/calibration/tests/main_recalib_with_homography.py +4 -4
  65. mocap_calibration/calibration/tests/main_recalibrate.py +4 -4
  66. mocap_calibration/calibration/tests/main_report.py +4 -4
  67. mocap_calibration/calibration/tests/main_vis_cameras.py +4 -4
  68. mocap_calibration/calibration/tests/pose_iphone.py +4 -4
  69. mocap_calibration/calibration/utils/__init__.py +4 -4
  70. mocap_calibration/calibration/utils/calib_from_metadata.py +4 -4
  71. mocap_calibration/calibration/utils/homography.py +4 -4
  72. mocap_calibration/calibration/utils/kalman_calib.py +4 -4
  73. mocap_calibration/operations/__init__.py +4 -4
  74. mocap_calibration/operations/opsCalibrate.py +4 -4
  75. mocap_calibration/operations/opsCalibrateAruco.py +4 -4
  76. mocap_calibration/operations/opsCorrectCalib.py +4 -4
  77. mocap_calibration/operations/opsReportCalib.py +4 -4
  78. mocap_calibration/operations/opsVisualization.py +4 -4
  79. {mocap_calibration-2.7.0.dist-info → mocap_calibration-2.9.0.dist-info}/METADATA +2 -1
  80. mocap_calibration-2.9.0.dist-info/RECORD +83 -0
  81. mocap_calibration/axengine_1730897622_1868370359.py +0 -246
  82. mocap_calibration-2.7.0.dist-info/RECORD +0 -83
  83. {mocap_calibration-2.7.0.dist-info → mocap_calibration-2.9.0.dist-info}/WHEEL +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
- 'axengine_1730897622_1868370359.py')):
5
+ 'axengine_1737998002_80099543.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 axengine_1730897622_1868370359 as _axengine
12
+ import axengine_1737998002_80099543 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 axengine_1730897622_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(167, globals())
17
+ from axengine_1737998002_80099543 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(337, 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
- 'axengine_1730897622_1868370359.py')):
5
+ 'axengine_1737998002_80099543.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 axengine_1730897622_1868370359 as _axengine
12
+ import axengine_1737998002_80099543 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 axengine_1730897622_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(136, globals())
17
+ from axengine_1737998002_80099543 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(353, 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
- 'axengine_1730897622_1868370359.py')):
5
+ 'axengine_1737998002_80099543.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 axengine_1730897622_1868370359 as _axengine
12
+ import axengine_1737998002_80099543 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 axengine_1730897622_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(141, globals())
17
+ from axengine_1737998002_80099543 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
- 'axengine_1730897622_1868370359.py')):
5
+ 'axengine_1737998002_80099543.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 axengine_1730897622_1868370359 as _axengine
12
+ import axengine_1737998002_80099543 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 axengine_1730897622_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(146, globals())
17
+ from axengine_1737998002_80099543 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(333, 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
- 'axengine_1730897622_1868370359.py')):
5
+ 'axengine_1737998002_80099543.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 axengine_1730897622_1868370359 as _axengine
12
+ import axengine_1737998002_80099543 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 axengine_1730897622_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(181, globals())
17
+ from axengine_1737998002_80099543 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(339, 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
- 'axengine_1730897622_1868370359.py')):
5
+ 'axengine_1737998002_80099543.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 axengine_1730897622_1868370359 as _axengine
12
+ import axengine_1737998002_80099543 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 axengine_1730897622_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(163, globals())
17
+ from axengine_1737998002_80099543 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(352, 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
- 'axengine_1730897622_1868370359.py')):
5
+ 'axengine_1737998002_80099543.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 axengine_1730897622_1868370359 as _axengine
12
+ import axengine_1737998002_80099543 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 axengine_1730897622_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(131, globals())
17
+ from axengine_1737998002_80099543 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(362, 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
- 'axengine_1730897622_1868370359.py')):
5
+ 'axengine_1737998002_80099543.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 axengine_1730897622_1868370359 as _axengine
12
+ import axengine_1737998002_80099543 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 axengine_1730897622_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(178, globals())
17
+ from axengine_1737998002_80099543 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(358, 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
- 'axengine_1730897622_1868370359.py')):
5
+ 'axengine_1737998002_80099543.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 axengine_1730897622_1868370359 as _axengine
12
+ import axengine_1737998002_80099543 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 axengine_1730897622_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(144, globals())
17
+ from axengine_1737998002_80099543 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(342, 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
- 'axengine_1730897622_1868370359.py')):
5
+ 'axengine_1737998002_80099543.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 axengine_1730897622_1868370359 as _axengine
12
+ import axengine_1737998002_80099543 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 axengine_1730897622_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(138, globals())
17
+ from axengine_1737998002_80099543 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(364, 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
- 'axengine_1730897622_1868370359.py')):
5
+ 'axengine_1737998002_80099543.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 axengine_1730897622_1868370359 as _axengine
12
+ import axengine_1737998002_80099543 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 axengine_1730897622_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(135, globals())
17
+ from axengine_1737998002_80099543 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(368, 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
- 'axengine_1730897622_1868370359.py')):
5
+ 'axengine_1737998002_80099543.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 axengine_1730897622_1868370359 as _axengine
12
+ import axengine_1737998002_80099543 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 axengine_1730897622_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(174, globals())
17
+ from axengine_1737998002_80099543 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(322, 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
- 'axengine_1730897622_1868370359.py')):
5
+ 'axengine_1737998002_80099543.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 axengine_1730897622_1868370359 as _axengine
12
+ import axengine_1737998002_80099543 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 axengine_1730897622_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(422, globals())
17
+ from axengine_1737998002_80099543 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(315, 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
- 'axengine_1730897622_1868370359.py')):
5
+ 'axengine_1737998002_80099543.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 axengine_1730897622_1868370359 as _axengine
12
+ import axengine_1737998002_80099543 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 axengine_1730897622_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(421, globals())
17
+ from axengine_1737998002_80099543 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(301, 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
- 'axengine_1730897622_1868370359.py')):
5
+ 'axengine_1737998002_80099543.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 axengine_1730897622_1868370359 as _axengine
12
+ import axengine_1737998002_80099543 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 axengine_1730897622_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(418, globals())
17
+ from axengine_1737998002_80099543 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(314, 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
- 'axengine_1730897622_1868370359.py')):
5
+ 'axengine_1737998002_80099543.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 axengine_1730897622_1868370359 as _axengine
12
+ import axengine_1737998002_80099543 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 axengine_1730897622_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(428, globals())
17
+ from axengine_1737998002_80099543 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(307, 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
- 'axengine_1730897622_1868370359.py')):
5
+ 'axengine_1737998002_80099543.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 axengine_1730897622_1868370359 as _axengine
12
+ import axengine_1737998002_80099543 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 axengine_1730897622_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(7, globals())
17
+ from axengine_1737998002_80099543 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
- 'axengine_1730897622_1868370359.py')):
5
+ 'axengine_1737998002_80099543.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 axengine_1730897622_1868370359 as _axengine
12
+ import axengine_1737998002_80099543 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 axengine_1730897622_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(3, globals())
17
+ from axengine_1737998002_80099543 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(8, 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
- 'axengine_1730897622_1868370359.py')):
5
+ 'axengine_1737998002_80099543.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 axengine_1730897622_1868370359 as _axengine
12
+ import axengine_1737998002_80099543 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 axengine_1730897622_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(13, globals())
17
+ from axengine_1737998002_80099543 import WupiError, WupiLicenseError, WupiErrorCode
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
- 'axengine_1730897622_1868370359.py')):
5
+ 'axengine_1737998002_80099543.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 axengine_1730897622_1868370359 as _axengine
12
+ import axengine_1737998002_80099543 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 axengine_1730897622_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(6, globals())
17
+ from axengine_1737998002_80099543 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(15, 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
- 'axengine_1730897622_1868370359.py')):
5
+ 'axengine_1737998002_80099543.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 axengine_1730897622_1868370359 as _axengine
12
+ import axengine_1737998002_80099543 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 axengine_1730897622_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(9, globals())
17
+ from axengine_1737998002_80099543 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(12, 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
- 'axengine_1730897622_1868370359.py')):
5
+ 'axengine_1737998002_80099543.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 axengine_1730897622_1868370359 as _axengine
12
+ import axengine_1737998002_80099543 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 axengine_1730897622_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(11, globals())
17
+ from axengine_1737998002_80099543 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(18, globals())
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mocap-calibration
3
- Version: 2.7.0
3
+ Version: 2.9.0
4
4
  Summary:
5
5
  Keywords: MotionOps,Moveai
6
6
  Author: move.ai
@@ -14,6 +14,7 @@ Requires-Dist: fpdf (>=1.7.2,<2.0.0)
14
14
  Requires-Dist: mocap-base (>=2.0.1,<3.0.0)
15
15
  Requires-Dist: mocap_settings (>=1.6.9,<2.0.0)
16
16
  Requires-Dist: moviepy (>=1.0.3,<2.0.0)
17
+ Requires-Dist: networkx (>=3.4.2,<4.0.0)
17
18
  Requires-Dist: opencv-python (>=4.10,<5.0)
18
19
  Requires-Dist: pyexiftool (==0.4.13)
19
20
  Requires-Dist: scikit-learn (>=1.3.1,<2.0.0)
@@ -0,0 +1,83 @@
1
+ mocap_calibration/__init__.py,sha256=a6ePxLjGp36BnJubHn3-QyWZlo1CQQiLnrsFGeLsDxs,719
2
+ mocap_calibration/axengine_1737998002_80099543.py,sha256=symCL7nmIskAiAn54NxdVlNtm78N0br3PKtgR4xyl0Y,273758
3
+ mocap_calibration/calib_eval/__init__.py,sha256=mEgcs4rcDJCo7Uaa_Z3pSMJmUTE9k0iwP2cOzRGZSFc,718
4
+ mocap_calibration/calib_eval/calib_eval_with_manual_kpts.py,sha256=-WMsaI-jqb0j6HbMkg2OCWBQjwUV7jqQyKlK72SyGcM,718
5
+ mocap_calibration/calibration/__init__.py,sha256=UYfbpWFTfLuJeoRax7hcgKoVcHQRH_BmN6O54l2UhTo,720
6
+ mocap_calibration/calibration/aruco/__init__.py,sha256=hsvAtt26m4SCQWuKmOn1BAYRFiYORB54vdnawLmx0Tg,720
7
+ mocap_calibration/calibration/aruco/aruco_calib.py,sha256=BXj96ty997mWN-g2gLv25OO7ij0h8TovJHChKxx_C_M,720
8
+ mocap_calibration/calibration/aruco/main_calib_aruco.py,sha256=O_S2reI2eUnp7saqTEdRVXLopJBrpaOnrNLFtoaxxgs,720
9
+ mocap_calibration/calibration/aruco/ppl_calib_aruco.py,sha256=r2QAe533Xk0uuTAaBBj8rwikJfcrk1hct6GQAW-JJcw,720
10
+ mocap_calibration/calibration/aruco/quality.py,sha256=VwYDF6rt2pH6Wc-lO4ZrlVrQsRs9-7ndo8oppMb3m7A,720
11
+ mocap_calibration/calibration/calib_obj/__init__.py,sha256=QHzDgwe0SlO8dSxNfy8nVARhORY82ta5UgrbtCCdJrM,720
12
+ mocap_calibration/calibration/calib_obj/calibration_obj.py,sha256=VfjjXRUoh4d1CZl9IOkHUpTDboF_A6ZBJQT1PVIiDtQ,720
13
+ mocap_calibration/calibration/calib_obj/detect_calib_obj.py,sha256=rf9yv1Pyh_2v2T4Yc1Ezt4t5zG774t76uuOxps4OiRs,720
14
+ mocap_calibration/calibration/calib_obj/pair_calib_obj.py,sha256=XWM0OQFBelQFb0PBmgg7Sra9K-uNOrnA7oEFfAIQ6wg,720
15
+ mocap_calibration/calibration/calib_obj/tests/__init__.py,sha256=SabqvtwabUCxpRawz-VjegwLxKITng8Hq0kKYajLPI4,719
16
+ mocap_calibration/calibration/calib_obj/tests/aruco_calib.py,sha256=bTpkr5vpuvFRl0i81VCTli9OTJnkT4U5Q02gt8MvhTY,719
17
+ mocap_calibration/calibration/calib_obj/tests/calib_football_court.py,sha256=fUn6MWPWVYXrdIpG8mTFINLcEw0XT6Xz1C6YDslNniM,719
18
+ mocap_calibration/calibration/calib_obj/tests/calibration_obj_test.py,sha256=X-AS3PcmaeNA4kWfUsvdnN8DlYbWKYO00vD5grurirQ,719
19
+ mocap_calibration/calibration/calib_obj/tests/check_aruco_with_gt.py,sha256=4cYkX3-NgY9f-ywFhs3yUDkSEMy3m5H3K3NcdkdCC7Q,719
20
+ mocap_calibration/calibration/calib_obj/tests/detect_lines.py,sha256=ZbqnWkVGw7DfC6xQwpKXWVTsXOSAzmu8eO6Gu_tiHik,719
21
+ mocap_calibration/calibration/calib_obj/tests/manual_calibration.py,sha256=vLzLsSlmS2_mn9IfZGXAUJWdwl2C4VIinIZWodhpZZQ,719
22
+ mocap_calibration/calibration/calib_obj/tests/solvePnP.py,sha256=gSXb7Vy0eYCnOWsMb2urDJEZPOqHhXa5S48ZSu5hGKo,719
23
+ mocap_calibration/calibration/calib_obj/tests/vis_aruco_calib.py,sha256=PuliKBkSwXGV89ilHLaCQhXPd0gmUrTnhRXs-czG4mk,719
24
+ mocap_calibration/calibration/calib_obj/tests/vis_manual_calib.py,sha256=tw6aVVya4M3jzjCxlmbzTsfdPCjrNtu7lPARkoIf-08,719
25
+ mocap_calibration/calibration/calib_obj/utils.py,sha256=vMlCRJjBtc3TxdPpClRJ73vICxq-1gCSaPJc5OSzupI,720
26
+ mocap_calibration/calibration/cam_intrinsics/__init__.py,sha256=SQlwC5CUubm1xfuQp1RAzgaV4sFEboZsKLqS012FDOw,719
27
+ mocap_calibration/calibration/cam_intrinsics/calc_intrinsics.py,sha256=3ohPYwREF-z0EgVemL9QduwX5ycaT3RTUIqFj7CpwjM,719
28
+ mocap_calibration/calibration/cam_intrinsics/calc_intrinsics_app.py,sha256=9DeW0xDYa-vwMDYsZbUhfRgenWjqZr_vxtZtBZcu75M,719
29
+ mocap_calibration/calibration/cam_intrinsics/intrinsic_calib.sh,sha256=63vZmxG7v0ZqsKA08q_8L7L2ODX8RZz-g3w7g6jTs0A,232
30
+ mocap_calibration/calibration/cam_intrinsics/set_webcam_settings.sh,sha256=JTHc7sXzpIv1aL5QLxEPM9NmorchrErX1aJlmWQiqnU,127
31
+ mocap_calibration/calibration/cam_intrinsics/undistort_app.py,sha256=nkF8afrt4hDEw3xSfdhfmq5mM7vff9ocjYDc9pQdg5I,719
32
+ mocap_calibration/calibration/cam_intrinsics/undistort_img.py,sha256=UHhMJwUhOf6IsY3uyliQOIDv8EPjFLMx7Cr0V1XoNZs,719
33
+ mocap_calibration/calibration/cam_intrinsics/undistort_video.py,sha256=R7TgejQasZ7hprqvxbT1tOHHEUoW9ZeW6OEPgUxe27c,719
34
+ mocap_calibration/calibration/cam_intrinsics/undistort_videos_from_json.py,sha256=syuEQvssF7AdeWJ9wmIbUuO5IzUSjGHuqINrVB85SnI,719
35
+ mocap_calibration/calibration/humanCalib/__init__.py,sha256=m1TIe7V65FXnppRkHua0esQG7_y3ZkQI5xTZOvmR3dw,720
36
+ mocap_calibration/calibration/humanCalib/ba.py,sha256=ajaUVp995w4u7qHHmFZ3HKNQ_FekrMBJX79ILR_Xzw8,720
37
+ mocap_calibration/calibration/humanCalib/floor_plane.py,sha256=jPPy292yxlxBFO6L-hl6OUCjTMUBSfD1ia7G69wcmZA,720
38
+ mocap_calibration/calibration/humanCalib/human_calib.py,sha256=S22hatQrT8kyQuOdhJqVupZvLxbsj2XEmlI7ttihXQU,720
39
+ mocap_calibration/calibration/humanCalib/human_calib_pair.py,sha256=362bIaLWggDv-Bon8st-A10Oc1_jHggNsZCet3ylbNM,720
40
+ mocap_calibration/calibration/humanCalib/ppl_calib_human.py,sha256=TAra8uUzBAj21R3feMA2USzSpbMIbHMSlhcyXh4SnCo,720
41
+ mocap_calibration/calibration/humanCalib/quality.py,sha256=d4We3J6N24x_O973WfkLJSUJN1e7d4LGAG0fXDj4t1I,720
42
+ mocap_calibration/calibration/humanCalib/report.py,sha256=W7mMyr8jybEHS-Va902OyxOewMVo9igyqQBmvnadB5s,720
43
+ mocap_calibration/calibration/humanCalib/utils/__init__.py,sha256=PM7fNlTDuLgWLdK94SWzIooLTNepVfnVIbklCxhO9U0,720
44
+ mocap_calibration/calibration/humanCalib/utils/ba_utils.py,sha256=Q_Wulzorj2jz6qbLfmdJcbSU0H18jxiNotMvlzJsaCo,720
45
+ mocap_calibration/calibration/humanCalib/utils/calib_utils.py,sha256=CecDKKM42CjHN8cWoVHUAoEFMkGM4y0h1ssb63vhsKc,720
46
+ mocap_calibration/calibration/humanCalib/utils/filtering.py,sha256=8yWLwmviLSFU3ZDsomS4Gf6coO2r0kOLJqq_UPTNNt8,720
47
+ mocap_calibration/calibration/humanCalib/utils/geometry_3d.py,sha256=ss9uPyimYGXYhA9B9M4MiEoZKKJRFmwIhrJL2n2LhTU,720
48
+ mocap_calibration/calibration/humanCalib/utils/refine_calib.py,sha256=fbHbCcAG6KDBgcUmtWZNpkWk7DZLF_wpHZ4yBUEHU8Y,720
49
+ mocap_calibration/calibration/interfaces/__init__.py,sha256=ipQxw468NqqB2YlTUYcW225Rk0_7RtXLsMTOg1i0aEQ,720
50
+ mocap_calibration/calibration/interfaces/calib_template.py,sha256=9SWpANF21XA6NyOr8wn5yKfKJ2487Ci3lJUH3A9lcU8,720
51
+ mocap_calibration/calibration/interfaces/pair_calib_template.py,sha256=Wh4UYQ6ldUl1YrJnW7jZoRPsivymwDchihHWTxLBBCY,720
52
+ mocap_calibration/calibration/interfaces/structures.py,sha256=KGhgE5-vexnG1d6dvh96JKZHT4QdXeeoVWY7VY25ljw,720
53
+ mocap_calibration/calibration/tests/__init__.py,sha256=a3zchz0xc1rJTJXRBOuFNr9VjO4XC4rKBKvWTF8O6Gk,720
54
+ mocap_calibration/calibration/tests/bias_analysis.py,sha256=EzmTqAyKk3_liqFzthjUvOtxw_mthqeqzj2ITelF7XY,720
55
+ mocap_calibration/calibration/tests/calc_calib_bias.py,sha256=92u6J7WzB5wweRPiWyw8snBsFbQeRhzmmXM5vh_AKxA,720
56
+ mocap_calibration/calibration/tests/calib_EA8K_json.py,sha256=kfa_As67VZjx8o10iaqjZHdoB3Rmd0I3eHHuCWJlI1Y,720
57
+ mocap_calibration/calibration/tests/calib_covered_area.py,sha256=aSPa1y1mt4zA3iPKcJJgR17KbPx_0cXOnZmKV3WmVuk,720
58
+ mocap_calibration/calibration/tests/calib_from_json.py,sha256=qkzkvAfWjH0xzkUbPoZVTfo5TAENa1d6uPqngPO4N3M,720
59
+ mocap_calibration/calibration/tests/calib_from_xml.py,sha256=hwkePJe-ZGgMyjteAqWuknomY5kIT2kUQFBbxE_NuqA,720
60
+ mocap_calibration/calibration/tests/calib_spectrum_json.py,sha256=RtZhcCCcYQWpxt8Z9z-fVRONrewNe_dK7doWSB9HM3k,720
61
+ mocap_calibration/calibration/tests/main_calib_pair.py,sha256=6ILlC2wLNBBw0WL-bM53nsUhGY0_aTyk_uLhZCSs8lo,720
62
+ mocap_calibration/calibration/tests/main_check_calib.py,sha256=-TDidI2yC2gnlSbj-DrLCRlX36ZxZSuzcLd1vllUuuE,720
63
+ mocap_calibration/calibration/tests/main_fast_calib.py,sha256=XeXVAOIQzvcnpyoO5Efb01sXKOWkiXCbC--5SlhYFkY,720
64
+ mocap_calibration/calibration/tests/main_floor_plane.py,sha256=UpQUJIdjPYhdaaeUHj7LaDqqUgNUrbBinAwj-MORCXM,720
65
+ mocap_calibration/calibration/tests/main_multi_calib.py,sha256=mWUXrNeJwy-pCIeIc1p1XFfyPYcuUzYQ4q1l4bzgvms,720
66
+ mocap_calibration/calibration/tests/main_recalib_with_homography.py,sha256=agaUmAVSbdyGS89UOsz_r_ONHcPe3iCliaL_s6YcSsI,720
67
+ mocap_calibration/calibration/tests/main_recalibrate.py,sha256=ojX8Ckm7dv7gtRSG5zkIV4KNI7tn2Ao0RlUQKuoUvPo,720
68
+ mocap_calibration/calibration/tests/main_report.py,sha256=gHY5BF-ckmXCZY7bZsryGPiK4vMWSfOutkkNJub1v4o,720
69
+ mocap_calibration/calibration/tests/main_vis_cameras.py,sha256=CePWdco-pJj5ojlEd6C6GHa3y9nsISyevzBrTQOQ-wg,720
70
+ mocap_calibration/calibration/tests/pose_iphone.py,sha256=bnrBU1nHkM5DQKD5rGFhh9vUwP-1DzQnw2wpY3CMf48,720
71
+ mocap_calibration/calibration/utils/__init__.py,sha256=draNVjKbweJ0pvo2HNhK-Vuyl0V9HlfK5gL3l5sZdP8,720
72
+ mocap_calibration/calibration/utils/calib_from_metadata.py,sha256=j3tX0Rm2V05aNoGUVeVC7BELR0ZHWMvR7FM6lxmOkps,720
73
+ mocap_calibration/calibration/utils/homography.py,sha256=142884fSfXR2JGX7wkqcuSzShEEEreDQyr9-4OMoxIg,720
74
+ mocap_calibration/calibration/utils/kalman_calib.py,sha256=d79HZuzPSKrSN5X8wWsxpCJlfiP9Rxm1HDOevMrbeaY,720
75
+ mocap_calibration/operations/__init__.py,sha256=imorz_46tJrOPT4iZjynobJHK9dPm-fXH2AkGmvVca8,719
76
+ mocap_calibration/operations/opsCalibrate.py,sha256=VEs6-ZmcGB_ihqdxzPPtNMLIw2WxI33GcifE97P2NFE,718
77
+ mocap_calibration/operations/opsCalibrateAruco.py,sha256=SHD5Qob9iDkpzBIk2RO7XqevE9_Z9WrJqhh6mkxuZv4,719
78
+ mocap_calibration/operations/opsCorrectCalib.py,sha256=QnSUYiStIb4S4nvluwi44LKKGhaHKlKKigVbhwrIZRs,719
79
+ mocap_calibration/operations/opsReportCalib.py,sha256=box2Afo2jpcGjx6cSVqQLUckyG8yQcrEX8BzNa_5QtQ,719
80
+ mocap_calibration/operations/opsVisualization.py,sha256=9pHi5U7Hz_gg1YZLHBllZhUx-d9-VI1N15EOZCx26M8,719
81
+ mocap_calibration-2.9.0.dist-info/METADATA,sha256=_uhJ8GiFsN8r-iWHSSJHZ652AqP98lt04S5gux4Q4jY,1066
82
+ mocap_calibration-2.9.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
83
+ mocap_calibration-2.9.0.dist-info/RECORD,,