mocap-calibration 2.6.0__py3-none-any.whl → 2.8.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 +3 -3
  2. mocap_calibration/axengine_1733489246_1868370359.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 +3 -3
  74. mocap_calibration/operations/opsCalibrate.py +3 -3
  75. mocap_calibration/operations/opsCalibrateAruco.py +3 -3
  76. mocap_calibration/operations/opsCorrectCalib.py +3 -3
  77. mocap_calibration/operations/opsReportCalib.py +3 -3
  78. mocap_calibration/operations/opsVisualization.py +3 -3
  79. {mocap_calibration-2.6.0.dist-info → mocap_calibration-2.8.0.dist-info}/METADATA +1 -1
  80. mocap_calibration-2.8.0.dist-info/RECORD +83 -0
  81. mocap_calibration/axengine_1729863185_1868370359.py +0 -246
  82. mocap_calibration-2.6.0.dist-info/RECORD +0 -83
  83. {mocap_calibration-2.6.0.dist-info → mocap_calibration-2.8.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_1729863185_1868370359.py')):
5
+ 'axengine_1733489246_1868370359.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_1729863185_1868370359 as _axengine
12
+ import axengine_1733489246_1868370359 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_1729863185_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(167, globals())
17
+ from axengine_1733489246_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(172, 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_1729863185_1868370359.py')):
5
+ 'axengine_1733489246_1868370359.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_1729863185_1868370359 as _axengine
12
+ import axengine_1733489246_1868370359 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_1729863185_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(136, globals())
17
+ from axengine_1733489246_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(141, 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_1729863185_1868370359.py')):
5
+ 'axengine_1733489246_1868370359.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_1729863185_1868370359 as _axengine
12
+ import axengine_1733489246_1868370359 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_1729863185_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(141, globals())
17
+ from axengine_1733489246_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(146, 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_1729863185_1868370359.py')):
5
+ 'axengine_1733489246_1868370359.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_1729863185_1868370359 as _axengine
12
+ import axengine_1733489246_1868370359 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_1729863185_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(146, globals())
17
+ from axengine_1733489246_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(151, 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_1729863185_1868370359.py')):
5
+ 'axengine_1733489246_1868370359.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_1729863185_1868370359 as _axengine
12
+ import axengine_1733489246_1868370359 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_1729863185_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(181, globals())
17
+ from axengine_1733489246_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(186, 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_1729863185_1868370359.py')):
5
+ 'axengine_1733489246_1868370359.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_1729863185_1868370359 as _axengine
12
+ import axengine_1733489246_1868370359 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_1729863185_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(163, globals())
17
+ from axengine_1733489246_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(168, 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_1729863185_1868370359.py')):
5
+ 'axengine_1733489246_1868370359.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_1729863185_1868370359 as _axengine
12
+ import axengine_1733489246_1868370359 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_1729863185_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(131, globals())
17
+ from axengine_1733489246_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(136, 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_1729863185_1868370359.py')):
5
+ 'axengine_1733489246_1868370359.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_1729863185_1868370359 as _axengine
12
+ import axengine_1733489246_1868370359 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_1729863185_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(178, globals())
17
+ from axengine_1733489246_1868370359 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_1729863185_1868370359.py')):
5
+ 'axengine_1733489246_1868370359.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_1729863185_1868370359 as _axengine
12
+ import axengine_1733489246_1868370359 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_1729863185_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(144, globals())
17
+ from axengine_1733489246_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(149, 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_1729863185_1868370359.py')):
5
+ 'axengine_1733489246_1868370359.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_1729863185_1868370359 as _axengine
12
+ import axengine_1733489246_1868370359 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_1729863185_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(138, globals())
17
+ from axengine_1733489246_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(143, 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_1729863185_1868370359.py')):
5
+ 'axengine_1733489246_1868370359.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_1729863185_1868370359 as _axengine
12
+ import axengine_1733489246_1868370359 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_1729863185_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(135, globals())
17
+ from axengine_1733489246_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(140, 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_1729863185_1868370359.py')):
5
+ 'axengine_1733489246_1868370359.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_1729863185_1868370359 as _axengine
12
+ import axengine_1733489246_1868370359 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_1729863185_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(174, globals())
17
+ from axengine_1733489246_1868370359 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_1729863185_1868370359.py')):
5
+ 'axengine_1733489246_1868370359.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_1729863185_1868370359 as _axengine
12
+ import axengine_1733489246_1868370359 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_1729863185_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(422, globals())
17
+ from axengine_1733489246_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(427, 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_1729863185_1868370359.py')):
5
+ 'axengine_1733489246_1868370359.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_1729863185_1868370359 as _axengine
12
+ import axengine_1733489246_1868370359 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_1729863185_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(421, globals())
17
+ from axengine_1733489246_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(426, 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_1729863185_1868370359.py')):
5
+ 'axengine_1733489246_1868370359.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_1729863185_1868370359 as _axengine
12
+ import axengine_1733489246_1868370359 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_1729863185_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(418, globals())
17
+ from axengine_1733489246_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(423, 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_1729863185_1868370359.py')):
5
+ 'axengine_1733489246_1868370359.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_1729863185_1868370359 as _axengine
12
+ import axengine_1733489246_1868370359 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_1729863185_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(428, globals())
17
+ from axengine_1733489246_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(433, 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_1729863185_1868370359.py')):
5
+ 'axengine_1733489246_1868370359.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_1729863185_1868370359 as _axengine
12
+ import axengine_1733489246_1868370359 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_1729863185_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1733489246_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(7, 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_1729863185_1868370359.py')):
5
+ 'axengine_1733489246_1868370359.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_1729863185_1868370359 as _axengine
12
+ import axengine_1733489246_1868370359 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_1729863185_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1733489246_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(3, 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_1729863185_1868370359.py')):
5
+ 'axengine_1733489246_1868370359.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_1729863185_1868370359 as _axengine
12
+ import axengine_1733489246_1868370359 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_1729863185_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1733489246_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(13, 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_1729863185_1868370359.py')):
5
+ 'axengine_1733489246_1868370359.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_1729863185_1868370359 as _axengine
12
+ import axengine_1733489246_1868370359 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_1729863185_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1733489246_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(6, 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_1729863185_1868370359.py')):
5
+ 'axengine_1733489246_1868370359.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_1729863185_1868370359 as _axengine
12
+ import axengine_1733489246_1868370359 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_1729863185_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1733489246_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(9, 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_1729863185_1868370359.py')):
5
+ 'axengine_1733489246_1868370359.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_1729863185_1868370359 as _axengine
12
+ import axengine_1733489246_1868370359 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_1729863185_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
17
+ from axengine_1733489246_1868370359 import WupiError, WupiLicenseError, WupiErrorCode
18
18
  _axengine._axe_run(11, globals())
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mocap-calibration
3
- Version: 2.6.0
3
+ Version: 2.8.0
4
4
  Summary:
5
5
  Keywords: MotionOps,Moveai
6
6
  Author: move.ai
@@ -0,0 +1,83 @@
1
+ mocap_calibration/__init__.py,sha256=1Sz7VtwNZgbQU9mn-n2GDEMdVyqE_lYRjjY0GCfb_40,725
2
+ mocap_calibration/axengine_1733489246_1868370359.py,sha256=lyV6xKUYiLCvV-xWlVctW3kSOm8MuzulWL61aI-Qg1g,241203
3
+ mocap_calibration/calib_eval/__init__.py,sha256=i3pIn3F2-63bZap4aRUnxHdpEBS00cfnYefdp7hNAr8,725
4
+ mocap_calibration/calib_eval/calib_eval_with_manual_kpts.py,sha256=GgvFPaw8Qm63iy9ubcyiukpnbbYuLGyqP_sA6obshyQ,725
5
+ mocap_calibration/calibration/__init__.py,sha256=KkINmKdofZ8Dzx0nHKIRdOM9o46ALtUjKcWwmk-c6jY,726
6
+ mocap_calibration/calibration/aruco/__init__.py,sha256=5dhqzZwsIQ_fYpWBjei4wTFa9LyPfDAp6CoB7j29Dyk,726
7
+ mocap_calibration/calibration/aruco/aruco_calib.py,sha256=vT4f7j0KzUNUckH5NOP4iXQ8xClnsFZbCX9XvHnHc8c,726
8
+ mocap_calibration/calibration/aruco/main_calib_aruco.py,sha256=nJizVPSI6KNAiRtC5DZAfEeNzfT0jU4iDM6KS45ahyw,726
9
+ mocap_calibration/calibration/aruco/ppl_calib_aruco.py,sha256=BDY6bFpvO50E6P7I0eCelNv9vNjl7DD0oT_mDlVEscw,726
10
+ mocap_calibration/calibration/aruco/quality.py,sha256=bmwMgrqZw-3lo5psOHdgnvY1VB8QHjBuPUlr1_2m-Xo,726
11
+ mocap_calibration/calibration/calib_obj/__init__.py,sha256=9apX4llyxAnQMolJJy_z_l7MtWB-lmss7vR85K9Yv3M,726
12
+ mocap_calibration/calibration/calib_obj/calibration_obj.py,sha256=FMGRg5Jlytz0USSg7qj4F3nWi1bpUWIPjPtDdj4iYuY,726
13
+ mocap_calibration/calibration/calib_obj/detect_calib_obj.py,sha256=L1fUOe5z2N4uHF9T1aK63Z96VN1AYSAVPBzxQ8SrCz4,725
14
+ mocap_calibration/calibration/calib_obj/pair_calib_obj.py,sha256=LcPO71WnjkiRoJZ0xU1qEE-LR8Pdpu-BUgpZ7NiBSlI,725
15
+ mocap_calibration/calibration/calib_obj/tests/__init__.py,sha256=1hv8kOASHvxxhuKFvtCxZDLttBBqHVf8aeKg8xAkqnE,725
16
+ mocap_calibration/calibration/calib_obj/tests/aruco_calib.py,sha256=1ESLHXyTgnzpezcT-w1qmZi1vYf3ybPRRGCoKixG5l0,725
17
+ mocap_calibration/calibration/calib_obj/tests/calib_football_court.py,sha256=Z0qa_Kn0ZjJfANNqFjPcLfhkKFaxWQV8Mye1iZ-rXpk,726
18
+ mocap_calibration/calibration/calib_obj/tests/calibration_obj_test.py,sha256=CPaOcIJZlx1Su3lpbjGM3BkhHaG_Uz00t0WY1cJFY8Y,726
19
+ mocap_calibration/calibration/calib_obj/tests/check_aruco_with_gt.py,sha256=JMlvS3yJFW7ILjL1ksRVWPum2Fn9SGM7t0GyayWQyTw,726
20
+ mocap_calibration/calibration/calib_obj/tests/detect_lines.py,sha256=sd8xaBoFovT8l4B5LK7znVGalhdQpkVg_P3XmoerNeU,725
21
+ mocap_calibration/calibration/calib_obj/tests/manual_calibration.py,sha256=K_sqhqFmu5x8Zaqks2Ls3qEdwbeBjQnCkv6wU6K8lB8,726
22
+ mocap_calibration/calibration/calib_obj/tests/solvePnP.py,sha256=3g6NXZe_qcS6RVEwFW9kDjX2Z7WN5IWs7dF3p9GvrAg,725
23
+ mocap_calibration/calibration/calib_obj/tests/vis_aruco_calib.py,sha256=uHBTHmYa7lpgEjVizQcxv6dr65e9R4O6XZM5psGLSYY,725
24
+ mocap_calibration/calibration/calib_obj/tests/vis_manual_calib.py,sha256=zM-uE_3ky83KiGf4CrWSN2cbViDsn39wPanumi66bs4,726
25
+ mocap_calibration/calibration/calib_obj/utils.py,sha256=vYorONLjN6i5avd_YTH5XHmMJ97o1_LGe99pI_C4MdM,725
26
+ mocap_calibration/calibration/cam_intrinsics/__init__.py,sha256=WugKhmdI6fCOgjiwG2ndywb8CqvMYkiLbuSRhtI264I,726
27
+ mocap_calibration/calibration/cam_intrinsics/calc_intrinsics.py,sha256=6N3t0gAUeZaE7R9bPnnJacr9eOnSevkDr_oZrkT-nTE,726
28
+ mocap_calibration/calibration/cam_intrinsics/calc_intrinsics_app.py,sha256=G0Mx7h-7mFpmqtFhhxflfcnkXQCNv1n6WHyE37GXU5M,726
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=k9sZDoQdeoZMl8iFYQKyjOGD4BZDT7DIRxOiPYkdbnk,726
32
+ mocap_calibration/calibration/cam_intrinsics/undistort_img.py,sha256=QHxkfrxFgTkhVnz5IrJRwYadqqwIp58gcHfg8fYAHiA,726
33
+ mocap_calibration/calibration/cam_intrinsics/undistort_video.py,sha256=WAVswFjPCPrDazF8GSCPbl0LMB9MTQvPy5dCwPMK2HI,726
34
+ mocap_calibration/calibration/cam_intrinsics/undistort_videos_from_json.py,sha256=sGmZFlpatZLb3LkHzlank_Si4zkHSjNfMDKQGEOeo2A,726
35
+ mocap_calibration/calibration/humanCalib/__init__.py,sha256=ueiHEmlDPRLsZ9XK1upbHuXSpJhZscKTnvfxh_p6P3k,726
36
+ mocap_calibration/calibration/humanCalib/ba.py,sha256=xPDbL5GLscuWHTXf63xGaOxWiH58P99dvjchaPHpv0w,726
37
+ mocap_calibration/calibration/humanCalib/floor_plane.py,sha256=G2Hk1q4po7_DmLqEED6DLao7D36FC5cZp47-1_PHOSs,726
38
+ mocap_calibration/calibration/humanCalib/human_calib.py,sha256=S_snfupTXV2umyNhwjKQ0r1UNH0mphH54kAsfdn9gUU,726
39
+ mocap_calibration/calibration/humanCalib/human_calib_pair.py,sha256=R6RF7_DqoO6fqWrQtWvyhvFRr-XFvv3DSj353OakMkg,726
40
+ mocap_calibration/calibration/humanCalib/ppl_calib_human.py,sha256=hLozF-kVQxvbKluNb25ZEccH6zdEK7Njm9ED6WqW4U4,726
41
+ mocap_calibration/calibration/humanCalib/quality.py,sha256=ixjPMhBYRLp-Gu_gOEm11OYw7VrWqUlbUj12Srh_3ec,726
42
+ mocap_calibration/calibration/humanCalib/report.py,sha256=QPPleGfJUVzoX9mYxPtOZEJCOZ_geTnopGgP88VtZ2Y,726
43
+ mocap_calibration/calibration/humanCalib/utils/__init__.py,sha256=Ks_2fJyzQqdIBLoCjPvgFDE3FpdzvRjvxJUtKYzHsEk,726
44
+ mocap_calibration/calibration/humanCalib/utils/ba_utils.py,sha256=24cNMMP8Mj6NYGEHqLXzvCPKm2w6w1mZvSD5NosyrV4,726
45
+ mocap_calibration/calibration/humanCalib/utils/calib_utils.py,sha256=vbc2O3JI8tAhvvXsrWruHyBdpbCQEvOwfGyEexI5XhU,726
46
+ mocap_calibration/calibration/humanCalib/utils/filtering.py,sha256=i7pEIOjYtMcvETjdHFtSOmI5Le108Fg_rY7yrRmSF8E,726
47
+ mocap_calibration/calibration/humanCalib/utils/geometry_3d.py,sha256=VldQSknAaAzm4bIX7KQ3UlaRGzed-vT0_tGypT3RdL4,726
48
+ mocap_calibration/calibration/humanCalib/utils/refine_calib.py,sha256=Xbnb63CrbmbHSLJyi7SvHDTORAswS3fjDGxe7H_yHE0,726
49
+ mocap_calibration/calibration/interfaces/__init__.py,sha256=aSPSbf1yj-Ctcn1mMYUnnsMIts1bTVbHjs0TYjihhiU,725
50
+ mocap_calibration/calibration/interfaces/calib_template.py,sha256=aEqKHikQeH3DJ1U_CuI813RkXcxwMy2bO6uXDlpn0xA,725
51
+ mocap_calibration/calibration/interfaces/pair_calib_template.py,sha256=Od8Z9i3cJsbdb3btZ8Wz4QT2eg3hcSjIUrXzDVydXgo,725
52
+ mocap_calibration/calibration/interfaces/structures.py,sha256=lx3SHVi_5EByJMmugo09kUSzd5y_vYDEPmIL4dLACWM,725
53
+ mocap_calibration/calibration/tests/__init__.py,sha256=35hhi80yAZJU3BOHOis_E2b6_JR-ZHy1dCk7Qi7ucqI,726
54
+ mocap_calibration/calibration/tests/bias_analysis.py,sha256=s1JQWM6-q8si9Il7R6GFoO5BBLIDXY2_jwUkO2q34Js,726
55
+ mocap_calibration/calibration/tests/calc_calib_bias.py,sha256=Sc6FZQnm2FnUGQ1G0DCRopvj3MbevxnPZLM-LBS6OzU,726
56
+ mocap_calibration/calibration/tests/calib_EA8K_json.py,sha256=y3oYxcutmUefo_LDmZBYv-4PgRS0KFGRiGB8et7brd8,726
57
+ mocap_calibration/calibration/tests/calib_covered_area.py,sha256=UPzRYhJA8c9UVwtN37GCQkaECSwvC2FjAKnJQ5Ps9_U,726
58
+ mocap_calibration/calibration/tests/calib_from_json.py,sha256=z7bAeGobmo8AyL57iKu6_en87RQp9uaxM0M8rnSKbp8,726
59
+ mocap_calibration/calibration/tests/calib_from_xml.py,sha256=BU7PexOefngKqLbsAejvPmwCYVcXvigpIbUBZ_7hi1E,726
60
+ mocap_calibration/calibration/tests/calib_spectrum_json.py,sha256=IsDASBWrtXnTlMdqqEM_b0kINFXo1bJbdoDSpPcT9Tk,726
61
+ mocap_calibration/calibration/tests/main_calib_pair.py,sha256=LZf0P4rCZRwT1cclTCUqehS7ClhzPLqaLsQVYtMFMq0,726
62
+ mocap_calibration/calibration/tests/main_check_calib.py,sha256=MfVKNDEH-UBQ0PiPXHMaLWiI2sORsGGKcvMzRUwn7Zw,726
63
+ mocap_calibration/calibration/tests/main_fast_calib.py,sha256=mD63aLEfzecIS3-GNRng52xcb6cXJjqftnV-x_X5QA4,726
64
+ mocap_calibration/calibration/tests/main_floor_plane.py,sha256=su_MRjtPy3Ds63GgPbNc44zZiJBkPB6iqv2accEYpps,726
65
+ mocap_calibration/calibration/tests/main_multi_calib.py,sha256=ia1qG-AMmNwkIrtyTffuxD-DwbRBjatbUfJKM7sk2CI,726
66
+ mocap_calibration/calibration/tests/main_recalib_with_homography.py,sha256=2lEB5VrrClyPSGT-cVJPCJ8RVaEC7YaM_jr6tI5YTJ0,726
67
+ mocap_calibration/calibration/tests/main_recalibrate.py,sha256=AOEAO6WAEZIwe0p02nbZCKv2yHpFkNHQmiX5hjT6IHU,726
68
+ mocap_calibration/calibration/tests/main_report.py,sha256=qRctblTv3QcvkVYYvEODyY1ZtC-3zkPS2kZ-hzm3oN4,726
69
+ mocap_calibration/calibration/tests/main_vis_cameras.py,sha256=RaB0rYSeXDVd7bDaVXV4l9zXKxVtPN6zibre1nEGXbA,726
70
+ mocap_calibration/calibration/tests/pose_iphone.py,sha256=vZtyOv8Ec87qlItm1Cj6X9fWuXuvS1lLglVPbqlk168,726
71
+ mocap_calibration/calibration/utils/__init__.py,sha256=Z040Xu0-j8wXLBzxdJ-RVDmeXo02xRTl-TR1dFE_nKY,726
72
+ mocap_calibration/calibration/utils/calib_from_metadata.py,sha256=QtsIY4RR9Fyxm8xsDPqtJXtLZ5z7DFriYfSxZSBOnh4,726
73
+ mocap_calibration/calibration/utils/homography.py,sha256=EZUtA-98odTeb0c7fmhBw1kc6uCai5h7lswr4WLuLwE,726
74
+ mocap_calibration/calibration/utils/kalman_calib.py,sha256=bvMGFmo_mKDAXX1eh_I3E4CySTgE9-rTNJdtvmZ62HU,726
75
+ mocap_calibration/operations/__init__.py,sha256=-fhKwGxU1PYPcNf9U7HGh4jhIpyQ3akPjJDt_KGz_F8,724
76
+ mocap_calibration/operations/opsCalibrate.py,sha256=GQOVp58dHoAv2c_kbVXgirr63ruxxtHht2E0C4ZoVw4,724
77
+ mocap_calibration/operations/opsCalibrateAruco.py,sha256=bopiQy2cy7ALLlyny8T_Tc4sQ2g5-jT6dnb-7_ENu9Q,725
78
+ mocap_calibration/operations/opsCorrectCalib.py,sha256=AeM51msHVJFufZMkvprwJUAjIOQSMgREGLqCVfsRjrE,724
79
+ mocap_calibration/operations/opsReportCalib.py,sha256=h6pOl3SHyRMMm9zwohtBPtNZetpgEm3Gy5OEP84TL6I,724
80
+ mocap_calibration/operations/opsVisualization.py,sha256=iRzBm6_Tmis3L2PiXWfVz8eeHHpexj5PLbxxEH2Hsnw,725
81
+ mocap_calibration-2.8.0.dist-info/METADATA,sha256=3CUqgIpvyOKejU76OthaOzNI9rsXXpNZNfnSwuUmP_Q,1025
82
+ mocap_calibration-2.8.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
83
+ mocap_calibration-2.8.0.dist-info/RECORD,,