mocap-calibration 2.10.0__py3-none-any.whl → 2.10.1__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_1755872856_2129582396.py +246 -0
  3. mocap_calibration/calib_eval/__init__.py +4 -4
  4. mocap_calibration/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.10.0.dist-info → mocap_calibration-2.10.1.dist-info}/METADATA +1 -1
  80. mocap_calibration-2.10.1.dist-info/RECORD +83 -0
  81. mocap_calibration/axengine_1753199798_2895062657.py +0 -246
  82. mocap_calibration-2.10.0.dist-info/RECORD +0 -83
  83. {mocap_calibration-2.10.0.dist-info → mocap_calibration-2.10.1.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_1753199798_2895062657.py')):
5
+ 'axengine_1755872856_2129582396.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_1753199798_2895062657 as _axengine
12
+ import axengine_1755872856_2129582396 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_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(426, globals())
17
+ from axengine_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(179, 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_1753199798_2895062657.py')):
5
+ 'axengine_1755872856_2129582396.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_1753199798_2895062657 as _axengine
12
+ import axengine_1755872856_2129582396 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_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(468, globals())
17
+ from axengine_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(192, 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_1753199798_2895062657.py')):
5
+ 'axengine_1755872856_2129582396.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_1753199798_2895062657 as _axengine
12
+ import axengine_1755872856_2129582396 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_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(448, globals())
17
+ from axengine_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(159, 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_1753199798_2895062657.py')):
5
+ 'axengine_1755872856_2129582396.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_1753199798_2895062657 as _axengine
12
+ import axengine_1755872856_2129582396 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_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(467, globals())
17
+ from axengine_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(200, 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_1753199798_2895062657.py')):
5
+ 'axengine_1755872856_2129582396.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_1753199798_2895062657 as _axengine
12
+ import axengine_1755872856_2129582396 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_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(450, globals())
17
+ from axengine_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(202, 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_1753199798_2895062657.py')):
5
+ 'axengine_1755872856_2129582396.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_1753199798_2895062657 as _axengine
12
+ import axengine_1755872856_2129582396 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_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(465, globals())
17
+ from axengine_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(171, 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_1753199798_2895062657.py')):
5
+ 'axengine_1755872856_2129582396.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_1753199798_2895062657 as _axengine
12
+ import axengine_1755872856_2129582396 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_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(445, globals())
17
+ from axengine_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(198, 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_1753199798_2895062657.py')):
5
+ 'axengine_1755872856_2129582396.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_1753199798_2895062657 as _axengine
12
+ import axengine_1755872856_2129582396 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_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(430, globals())
17
+ from axengine_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(183, 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_1753199798_2895062657.py')):
5
+ 'axengine_1755872856_2129582396.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_1753199798_2895062657 as _axengine
12
+ import axengine_1755872856_2129582396 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_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(458, globals())
17
+ from axengine_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(187, 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_1753199798_2895062657.py')):
5
+ 'axengine_1755872856_2129582396.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_1753199798_2895062657 as _axengine
12
+ import axengine_1755872856_2129582396 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_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(441, globals())
17
+ from axengine_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(194, 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_1753199798_2895062657.py')):
5
+ 'axengine_1755872856_2129582396.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_1753199798_2895062657 as _axengine
12
+ import axengine_1755872856_2129582396 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_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(435, globals())
17
+ from axengine_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(191, 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_1753199798_2895062657.py')):
5
+ 'axengine_1755872856_2129582396.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_1753199798_2895062657 as _axengine
12
+ import axengine_1755872856_2129582396 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_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(475, globals())
17
+ from axengine_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(155, 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_1753199798_2895062657.py')):
5
+ 'axengine_1755872856_2129582396.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_1753199798_2895062657 as _axengine
12
+ import axengine_1755872856_2129582396 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_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(281, globals())
17
+ from axengine_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(381, 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_1753199798_2895062657.py')):
5
+ 'axengine_1755872856_2129582396.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_1753199798_2895062657 as _axengine
12
+ import axengine_1755872856_2129582396 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_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(297, globals())
17
+ from axengine_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(367, 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_1753199798_2895062657.py')):
5
+ 'axengine_1755872856_2129582396.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_1753199798_2895062657 as _axengine
12
+ import axengine_1755872856_2129582396 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_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(288, globals())
17
+ from axengine_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(374, 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_1753199798_2895062657.py')):
5
+ 'axengine_1755872856_2129582396.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_1753199798_2895062657 as _axengine
12
+ import axengine_1755872856_2129582396 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_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(294, globals())
17
+ from axengine_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(380, 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_1753199798_2895062657.py')):
5
+ 'axengine_1755872856_2129582396.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_1753199798_2895062657 as _axengine
12
+ import axengine_1755872856_2129582396 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_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(481, globals())
17
+ from axengine_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(493, 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_1753199798_2895062657.py')):
5
+ 'axengine_1755872856_2129582396.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_1753199798_2895062657 as _axengine
12
+ import axengine_1755872856_2129582396 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_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(494, globals())
17
+ from axengine_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(483, 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_1753199798_2895062657.py')):
5
+ 'axengine_1755872856_2129582396.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_1753199798_2895062657 as _axengine
12
+ import axengine_1755872856_2129582396 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_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(490, globals())
17
+ from axengine_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(488, 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_1753199798_2895062657.py')):
5
+ 'axengine_1755872856_2129582396.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_1753199798_2895062657 as _axengine
12
+ import axengine_1755872856_2129582396 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_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(488, globals())
17
+ from axengine_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(486, 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_1753199798_2895062657.py')):
5
+ 'axengine_1755872856_2129582396.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_1753199798_2895062657 as _axengine
12
+ import axengine_1755872856_2129582396 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_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(483, globals())
17
+ from axengine_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(492, 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_1753199798_2895062657.py')):
5
+ 'axengine_1755872856_2129582396.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_1753199798_2895062657 as _axengine
12
+ import axengine_1755872856_2129582396 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_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(485, globals())
17
+ from axengine_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(490, globals())
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mocap-calibration
3
- Version: 2.10.0
3
+ Version: 2.10.1
4
4
  Summary:
5
5
  Keywords: MotionOps,Moveai
6
6
  Author: move.ai
@@ -0,0 +1,83 @@
1
+ mocap_calibration/__init__.py,sha256=beB7OLBdHeqt4xw8z4yELB9frVdUrrv1uLG4VBzqERI,726
2
+ mocap_calibration/axengine_1755872856_2129582396.py,sha256=Kphoo-6zkQ-2GFn4p6Q1hD7UsVcJYTIbdGn9RFfelnI,274638
3
+ mocap_calibration/calib_eval/__init__.py,sha256=BhKzDjtuAqSOzlYAm6sH1e1hzdA0EDmk4H0ke_bEh6w,726
4
+ mocap_calibration/calib_eval/calib_eval_with_manual_kpts.py,sha256=gCbaD9poD_DPzvIEumvk-NUgxhswqN9x0UAIykBndPg,726
5
+ mocap_calibration/calibration/__init__.py,sha256=UdA0DcmqAarAHoeHQnD2K7Chalxh3KKw3efbjdDK_Oc,726
6
+ mocap_calibration/calibration/aruco/__init__.py,sha256=grWxZh4mJIBpTizP_FfT1Kb9Zt5m3ds6ok9FecAVadM,726
7
+ mocap_calibration/calibration/aruco/aruco_calib.py,sha256=OHza_BuiQyY24MyvHYnwEALAd521r3V-HrDOOSqdpoA,726
8
+ mocap_calibration/calibration/aruco/main_calib_aruco.py,sha256=DmkUakBAgQ6u16hpP7WNXM_SsXI6hf3mMQ6MgRnRXmk,726
9
+ mocap_calibration/calibration/aruco/ppl_calib_aruco.py,sha256=yreEG178Fae5q5IC-G_BXosHJguOlAhPnCoHIeLgnW8,726
10
+ mocap_calibration/calibration/aruco/quality.py,sha256=_Q4C7dcb92i0bAGDB9D4mwqJ0wIngQ9uB1FzPJPcC4s,726
11
+ mocap_calibration/calibration/calib_obj/__init__.py,sha256=QxDUFP9icRIH259drXrxMB2YrgGYIaVHYKe6O6tepr8,726
12
+ mocap_calibration/calibration/calib_obj/calibration_obj.py,sha256=KBR2GR6F7Tzy3QsFTO8Gz_OjKpMVTHO9W2ofexVzWHg,726
13
+ mocap_calibration/calibration/calib_obj/detect_calib_obj.py,sha256=BTDl4XvM_IQ-u7CumGzwsTpQaBQm9ob2QuDlVhsWjc0,726
14
+ mocap_calibration/calibration/calib_obj/pair_calib_obj.py,sha256=eJVcsRtxQNQ82z_jH012llKJPKI3y4dUghUahvMRhKE,726
15
+ mocap_calibration/calibration/calib_obj/tests/__init__.py,sha256=wnoR7_OlTFBYwJ8sPlPpd_daJgNRxqkzyD8lUQnvD3s,726
16
+ mocap_calibration/calibration/calib_obj/tests/aruco_calib.py,sha256=zdF58sM2oLVMlao6c5Uypl_1JGq0XzNylXkg2zukV8U,726
17
+ mocap_calibration/calibration/calib_obj/tests/calib_football_court.py,sha256=dgHihGQn9__yvQFJnwuhZNTvmEtg9XQSGGXdZ7p7QVk,726
18
+ mocap_calibration/calibration/calib_obj/tests/calibration_obj_test.py,sha256=v79hIx9s83zew-xu5aEl-jJiedlu8D2nkQUySmVOFlc,726
19
+ mocap_calibration/calibration/calib_obj/tests/check_aruco_with_gt.py,sha256=04MMu8yHlEhbkmJ1mObgPyRp3-UoodCveQ4taYLIBqU,726
20
+ mocap_calibration/calibration/calib_obj/tests/detect_lines.py,sha256=Hxs6SHnObgT-WSn7BoJZ9c-LN0GNH0wbGZKZI8F4qzQ,726
21
+ mocap_calibration/calibration/calib_obj/tests/manual_calibration.py,sha256=j4Z8SI8jGbNMETpysCwS7eyN225C71I4wMVQDAvDqLw,726
22
+ mocap_calibration/calibration/calib_obj/tests/solvePnP.py,sha256=9AJTu3fTp4adjf7mPlCPZUiEecoUopHJOKgbUHuLyNI,726
23
+ mocap_calibration/calibration/calib_obj/tests/vis_aruco_calib.py,sha256=AgLtHZGU5hxxqfA6Muxk5AKzsBNjbE5FidM2zDMSzU0,726
24
+ mocap_calibration/calibration/calib_obj/tests/vis_manual_calib.py,sha256=w3Df9ScozSGCXaNe9IQ-WmcvxHVT_kgpAdGqA1-bvCA,726
25
+ mocap_calibration/calibration/calib_obj/utils.py,sha256=9bFt5Am1vDpPFAWfOwvlS-YWBdfoUUA0BPrn2YbeN_U,726
26
+ mocap_calibration/calibration/cam_intrinsics/__init__.py,sha256=aPLGu5jPKwRovREBR91ZHAmD0UctT0Hi-Y_NbFKYIkM,725
27
+ mocap_calibration/calibration/cam_intrinsics/calc_intrinsics.py,sha256=EjJYQ6Qowc1FvgF1b_soC-TH60c8Tfz7rVUA397wJXo,725
28
+ mocap_calibration/calibration/cam_intrinsics/calc_intrinsics_app.py,sha256=DYDG7IJxpgeVSE2tq65LTYor-GzNVBj0NYA32bMdqts,724
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=0KQCWGrzkwgKD_HEqpMknWoKYuisxXuqdPc_yRu1gK4,725
32
+ mocap_calibration/calibration/cam_intrinsics/undistort_img.py,sha256=rTfOlbiDGXEE8KdyQ7irsov9Z90psLibXB5brt2d6hc,725
33
+ mocap_calibration/calibration/cam_intrinsics/undistort_video.py,sha256=D0EHIBz8yx0xWFpksM2QAM3GDWRbSIroNrt-_Y9nsZ0,725
34
+ mocap_calibration/calibration/cam_intrinsics/undistort_videos_from_json.py,sha256=5Ma-Vk_c0e2JoF1L5rjJ1bhbyjX0zXMLk-u4tBxD9Vs,724
35
+ mocap_calibration/calibration/humanCalib/__init__.py,sha256=0aExyDuQt6YibiOBZm3V8KrFmIhaYl2gnM0-hJXendA,726
36
+ mocap_calibration/calibration/humanCalib/ba.py,sha256=jZfbhOqx0v-LoNEuNkT8TMIOnoeGT7MvysjjdffgAkg,725
37
+ mocap_calibration/calibration/humanCalib/floor_plane.py,sha256=rzHCHe9WXRaiOIvUbyAV1gh-XFbVfhkoYujZ4YsRN_c,726
38
+ mocap_calibration/calibration/humanCalib/human_calib.py,sha256=8ZNB583cJ3ridzEtMJi9J4pCZh2SCFwKl6xvj7wZGbw,726
39
+ mocap_calibration/calibration/humanCalib/human_calib_pair.py,sha256=b48CpEamwuaZcWWtaqgcdZe3CtjfRducxHP1xF8sF94,725
40
+ mocap_calibration/calibration/humanCalib/ppl_calib_human.py,sha256=AOtlupDk5DdmSmrvUkd3jqC2QMDnPmMzVrc09SB0Ycs,725
41
+ mocap_calibration/calibration/humanCalib/quality.py,sha256=WbMgSwXd4qOV_GCBk9uvsKPvS2dktsvTFE0EJng3ufU,725
42
+ mocap_calibration/calibration/humanCalib/report.py,sha256=tS-UiVWuhL0WTKPpLuL7hkxPPqVTa36-RBfMiKAIRrM,725
43
+ mocap_calibration/calibration/humanCalib/utils/__init__.py,sha256=ylFuOqyYaeTSJtpjAnPoFPg8x2evyR-0c04jBpnpVO4,726
44
+ mocap_calibration/calibration/humanCalib/utils/ba_utils.py,sha256=I-vVucx5IPGijaLNMzsrLdQ7VpGCRH82VAdINpuA24M,725
45
+ mocap_calibration/calibration/humanCalib/utils/calib_utils.py,sha256=-FnRbihUWZBNDdeBT2cx7iHxAPdlKMHxMsIoSR5F7Dw,726
46
+ mocap_calibration/calibration/humanCalib/utils/filtering.py,sha256=83RWCtrtXs1sbjpG0Y6b_d6Dm_jqoz-iYkQXyHN5bOQ,725
47
+ mocap_calibration/calibration/humanCalib/utils/geometry_3d.py,sha256=Tx1wihPMOrABKYS4JgdfsHSxZb5ILwhF1VPISeps3As,726
48
+ mocap_calibration/calibration/humanCalib/utils/refine_calib.py,sha256=oTMFa_qXAqOqzTSmSikwDZt5If1KDtQYi3-hKS2ihQo,726
49
+ mocap_calibration/calibration/interfaces/__init__.py,sha256=dz7RzpPVCNdMqrZm_GGoOZTqxqAXjDsbSqH80GLXgKg,726
50
+ mocap_calibration/calibration/interfaces/calib_template.py,sha256=SWF9XIimsq2pT7_ygfG3147wWjGOohVp1ioBm8Q7FX8,726
51
+ mocap_calibration/calibration/interfaces/pair_calib_template.py,sha256=ULg0QnjqXjjiLNMXcE1UyGrB5Yxfhs9BsM_FvRCypNo,726
52
+ mocap_calibration/calibration/interfaces/structures.py,sha256=2_FmXhTS9zYicjfYS4fFM0uwqR6iMMdyI4TEiX4yoVQ,726
53
+ mocap_calibration/calibration/tests/__init__.py,sha256=qNFD3OVjom8_CCQ63IMn2oFK-I7p9ZrFvOTvYJTXWbM,726
54
+ mocap_calibration/calibration/tests/bias_analysis.py,sha256=1Sxw_RsL5u_lrrwt9-TaXD5hUR_lRd6_OULKzZ8bT2s,726
55
+ mocap_calibration/calibration/tests/calc_calib_bias.py,sha256=nX9j3JOvCt_VgTkDSTdggfpq87jmW6iWSwT_TDT23Lw,726
56
+ mocap_calibration/calibration/tests/calib_EA8K_json.py,sha256=JfduanLkYYdGoX3HgFAzq-dl0xAlVkpYyimkjJW4pl8,726
57
+ mocap_calibration/calibration/tests/calib_covered_area.py,sha256=SNYmQV7I06w0Vki44kSFi4p_qeG70M3RG5UjCgs3IlY,726
58
+ mocap_calibration/calibration/tests/calib_from_json.py,sha256=FuB5QXsz0XZpQ25SYssLQLMGEDM4ZsMuOZ-Az79yQG4,726
59
+ mocap_calibration/calibration/tests/calib_from_xml.py,sha256=5kghZ0f1PNX3ofnl1OFsxLtDv3uGksM7JcbdPdUrTEw,726
60
+ mocap_calibration/calibration/tests/calib_spectrum_json.py,sha256=pGJuGITZ_-NQa0kPVBbZKWOvzqGhvBOUc9yffCpQYlk,726
61
+ mocap_calibration/calibration/tests/main_calib_pair.py,sha256=IzaWHWXbbauuEfLRCJYUFzZE70vDpptHAwQ4cqDKk48,726
62
+ mocap_calibration/calibration/tests/main_check_calib.py,sha256=noECj1atE5GI6ToEMYqCpDseZukmHvJgGXuycUR6SoI,726
63
+ mocap_calibration/calibration/tests/main_fast_calib.py,sha256=4KmFIn23vwXesHCj3KRep2NgP7NPkmOCS5LpHKWflBs,726
64
+ mocap_calibration/calibration/tests/main_floor_plane.py,sha256=aER1x8Nfy0ZgZbmR0y7YpQALgj3p14NYjsGT7nUCknw,726
65
+ mocap_calibration/calibration/tests/main_multi_calib.py,sha256=FS0SLZEZK5muwlqbQfQWgjQlEoUuBwy5PyW-OTLn-hk,726
66
+ mocap_calibration/calibration/tests/main_recalib_with_homography.py,sha256=AiQck4pFaDWG1XepUX461VDe1TEhQ7K6pdRNRNwL4Ds,726
67
+ mocap_calibration/calibration/tests/main_recalibrate.py,sha256=_M-MVnjXdXlKwc6XrBqJuhMTAqvwDfv3Y0WHN_Zb30s,726
68
+ mocap_calibration/calibration/tests/main_report.py,sha256=I3v03zPzANWxCUCch2tN8Aax26QbpVRZpIR0FgVnVT0,726
69
+ mocap_calibration/calibration/tests/main_vis_cameras.py,sha256=PX1ZAAQyf9ap4rekxe1XykvTL1b2HEa9X2aOG5WckYs,726
70
+ mocap_calibration/calibration/tests/pose_iphone.py,sha256=fK4MWEcpccM5kNvo-hw6UHXAh01tXD9PQhsqsRxdy30,726
71
+ mocap_calibration/calibration/utils/__init__.py,sha256=ZAsw5T2NWyVwDCK2qb687-nurOSPVtgbjqWcKBHXsxo,726
72
+ mocap_calibration/calibration/utils/calib_from_metadata.py,sha256=ZHBu1wZE15VswpCTm9aQyEm3CAwO-g7iCYz6MOlfXIM,726
73
+ mocap_calibration/calibration/utils/homography.py,sha256=FH3uWvgZOkxLA1uosENCj6aZKBeqLH3szJmmyMYgOFI,726
74
+ mocap_calibration/calibration/utils/kalman_calib.py,sha256=i5jD-AJYIFMRsvPfBjqxXz51mRyeNRKwAAwt42PA8x8,726
75
+ mocap_calibration/operations/__init__.py,sha256=kK8j94ntMCeIWp760FHkXO4iN9qDxV-1WByh6RDS9E8,726
76
+ mocap_calibration/operations/opsCalibrate.py,sha256=bdjnYR-ZW2Tt_FERgdrmm_MCHd-8eFSJREaTQqUqEj4,726
77
+ mocap_calibration/operations/opsCalibrateAruco.py,sha256=DplwZo6vf2FhdawIriWJyBGJrisMeS1HBvx7akAQjsM,726
78
+ mocap_calibration/operations/opsCorrectCalib.py,sha256=rEhlPAabYS_v-llT3HeImkkpC1WcXuibdqNS3WJqTyw,726
79
+ mocap_calibration/operations/opsReportCalib.py,sha256=K9t3-TbOsJGn2XFp8LCyDAs5XHi0gn4fRkTgHdbXluw,726
80
+ mocap_calibration/operations/opsVisualization.py,sha256=hUlRmhrIP_SBRlhCZpSoruNfkqEyL9g8taIIYLz1tnY,726
81
+ mocap_calibration-2.10.1.dist-info/METADATA,sha256=gnu5HDB6VgfvvWipzzxAQd2uGtgUVAzYB39o5utevh0,1067
82
+ mocap_calibration-2.10.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
83
+ mocap_calibration-2.10.1.dist-info/RECORD,,