mocap-calibration 2.10.1__py3-none-any.whl → 2.10.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (83) hide show
  1. mocap_calibration/__init__.py +4 -4
  2. mocap_calibration/axengine_1758575479_771807436.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.1.dist-info → mocap_calibration-2.10.2.dist-info}/METADATA +1 -1
  80. mocap_calibration-2.10.2.dist-info/RECORD +83 -0
  81. mocap_calibration/axengine_1755872856_2129582396.py +0 -246
  82. mocap_calibration-2.10.1.dist-info/RECORD +0 -83
  83. {mocap_calibration-2.10.1.dist-info → mocap_calibration-2.10.2.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_1755872856_2129582396.py')):
5
+ 'axengine_1758575479_771807436.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_1755872856_2129582396 as _axengine
12
+ import axengine_1758575479_771807436 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_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(179, globals())
17
+ from axengine_1758575479_771807436 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(137, 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_1755872856_2129582396.py')):
5
+ 'axengine_1758575479_771807436.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_1755872856_2129582396 as _axengine
12
+ import axengine_1758575479_771807436 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_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(192, globals())
17
+ from axengine_1758575479_771807436 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(152, 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_1755872856_2129582396.py')):
5
+ 'axengine_1758575479_771807436.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_1755872856_2129582396 as _axengine
12
+ import axengine_1758575479_771807436 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_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(159, globals())
17
+ from axengine_1758575479_771807436 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(173, 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_1755872856_2129582396.py')):
5
+ 'axengine_1758575479_771807436.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_1755872856_2129582396 as _axengine
12
+ import axengine_1758575479_771807436 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_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(200, globals())
17
+ from axengine_1758575479_771807436 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(170, 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_1755872856_2129582396.py')):
5
+ 'axengine_1758575479_771807436.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_1755872856_2129582396 as _axengine
12
+ import axengine_1758575479_771807436 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_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(202, globals())
17
+ from axengine_1758575479_771807436 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(139, 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_1755872856_2129582396.py')):
5
+ 'axengine_1758575479_771807436.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_1755872856_2129582396 as _axengine
12
+ import axengine_1758575479_771807436 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_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(171, globals())
17
+ from axengine_1758575479_771807436 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_1755872856_2129582396.py')):
5
+ 'axengine_1758575479_771807436.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_1755872856_2129582396 as _axengine
12
+ import axengine_1758575479_771807436 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_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(198, globals())
17
+ from axengine_1758575479_771807436 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(156, 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_1755872856_2129582396.py')):
5
+ 'axengine_1758575479_771807436.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_1755872856_2129582396 as _axengine
12
+ import axengine_1758575479_771807436 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_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(183, globals())
17
+ from axengine_1758575479_771807436 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(150, 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_1755872856_2129582396.py')):
5
+ 'axengine_1758575479_771807436.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_1755872856_2129582396 as _axengine
12
+ import axengine_1758575479_771807436 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_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(187, globals())
17
+ from axengine_1758575479_771807436 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(182, 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_1755872856_2129582396.py')):
5
+ 'axengine_1758575479_771807436.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_1755872856_2129582396 as _axengine
12
+ import axengine_1758575479_771807436 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_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(194, globals())
17
+ from axengine_1758575479_771807436 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(175, 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_1755872856_2129582396.py')):
5
+ 'axengine_1758575479_771807436.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_1755872856_2129582396 as _axengine
12
+ import axengine_1758575479_771807436 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_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(191, globals())
17
+ from axengine_1758575479_771807436 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(133, 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_1755872856_2129582396.py')):
5
+ 'axengine_1758575479_771807436.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_1755872856_2129582396 as _axengine
12
+ import axengine_1758575479_771807436 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_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(155, globals())
17
+ from axengine_1758575479_771807436 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_1755872856_2129582396.py')):
5
+ 'axengine_1758575479_771807436.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_1755872856_2129582396 as _axengine
12
+ import axengine_1758575479_771807436 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_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(381, globals())
17
+ from axengine_1758575479_771807436 import WupiError, WupiLicenseError, WupiErrorCode
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_1755872856_2129582396.py')):
5
+ 'axengine_1758575479_771807436.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_1755872856_2129582396 as _axengine
12
+ import axengine_1758575479_771807436 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_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(367, globals())
17
+ from axengine_1758575479_771807436 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(2, 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_1755872856_2129582396.py')):
5
+ 'axengine_1758575479_771807436.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_1755872856_2129582396 as _axengine
12
+ import axengine_1758575479_771807436 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_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(374, globals())
17
+ from axengine_1758575479_771807436 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_1755872856_2129582396.py')):
5
+ 'axengine_1758575479_771807436.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_1755872856_2129582396 as _axengine
12
+ import axengine_1758575479_771807436 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_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(380, globals())
17
+ from axengine_1758575479_771807436 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_1755872856_2129582396.py')):
5
+ 'axengine_1758575479_771807436.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_1755872856_2129582396 as _axengine
12
+ import axengine_1758575479_771807436 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_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(493, globals())
17
+ from axengine_1758575479_771807436 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(482, 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_1755872856_2129582396.py')):
5
+ 'axengine_1758575479_771807436.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_1755872856_2129582396 as _axengine
12
+ import axengine_1758575479_771807436 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_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(483, globals())
17
+ from axengine_1758575479_771807436 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(479, 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_1755872856_2129582396.py')):
5
+ 'axengine_1758575479_771807436.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_1755872856_2129582396 as _axengine
12
+ import axengine_1758575479_771807436 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_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(488, globals())
17
+ from axengine_1758575479_771807436 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_1755872856_2129582396.py')):
5
+ 'axengine_1758575479_771807436.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_1755872856_2129582396 as _axengine
12
+ import axengine_1758575479_771807436 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_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(486, globals())
17
+ from axengine_1758575479_771807436 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(489, 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_1755872856_2129582396.py')):
5
+ 'axengine_1758575479_771807436.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_1755872856_2129582396 as _axengine
12
+ import axengine_1758575479_771807436 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_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(492, globals())
17
+ from axengine_1758575479_771807436 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(481, 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_1755872856_2129582396.py')):
5
+ 'axengine_1758575479_771807436.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_1755872856_2129582396 as _axengine
12
+ import axengine_1758575479_771807436 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_1755872856_2129582396 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(490, globals())
17
+ from axengine_1758575479_771807436 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(484, globals())
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mocap-calibration
3
- Version: 2.10.1
3
+ Version: 2.10.2
4
4
  Summary:
5
5
  Keywords: MotionOps,Moveai
6
6
  Author: move.ai
@@ -0,0 +1,83 @@
1
+ mocap_calibration/__init__.py,sha256=tkNC1xDl0DQbNafYs__nCbwuV7smLuSqRmxvcN0Ulzs,723
2
+ mocap_calibration/axengine_1758575479_771807436.py,sha256=GpNftepTS2du9MmuTXzHlNhQHuGpduk-OYXyLBDiBeo,274523
3
+ mocap_calibration/calib_eval/__init__.py,sha256=UfBW7q5FCyi8pteSLmfv1hhjbmZOAKDx9MMNOGIkYAk,723
4
+ mocap_calibration/calib_eval/calib_eval_with_manual_kpts.py,sha256=HwmU7SWmEmOQXSrOZRkR9-ADkiXrC-OllKa-PhT0GpI,723
5
+ mocap_calibration/calibration/__init__.py,sha256=Ca5XAjeVcKA-3nJranjpzg9z7QVi0X9gUO2LvV7pIWI,723
6
+ mocap_calibration/calibration/aruco/__init__.py,sha256=joM-3WTAsMlPydnLrlKL_4HjrsvvbPzrWfrFTVrKiqk,723
7
+ mocap_calibration/calibration/aruco/aruco_calib.py,sha256=gBFXBmwanF4r3zZk5A7-8qpqry4G3OIaQwsxMN7DY5I,723
8
+ mocap_calibration/calibration/aruco/main_calib_aruco.py,sha256=yNBTQqreh91BkgLiiZ7yqyeC9a26RsxdEuItdAqvTIg,723
9
+ mocap_calibration/calibration/aruco/ppl_calib_aruco.py,sha256=RI52vGFmzAxu79JKjSovAuVM8JYgh83lNqDwtPrsscg,723
10
+ mocap_calibration/calibration/aruco/quality.py,sha256=02Gf4OUK_w0FOgw_rmzITgUgozkgq-vRUiWxelYlzEI,723
11
+ mocap_calibration/calibration/calib_obj/__init__.py,sha256=SXkOdHxuyy8DVo0yPjmU2rTe5nfEMPtOxWUvDduRj7w,723
12
+ mocap_calibration/calibration/calib_obj/calibration_obj.py,sha256=cVh6D1yfuK-wgkhBXfItlCVIgte_evwsWPeJCPoJbQQ,722
13
+ mocap_calibration/calibration/calib_obj/detect_calib_obj.py,sha256=Yr7o-PZKmiNB1PW5FbyC1r26psHSWp23cr5UrOiOyo8,723
14
+ mocap_calibration/calibration/calib_obj/pair_calib_obj.py,sha256=b3xLaziU98zCR_sImzJxwwn5449tkhQD18Ds8xTbego,722
15
+ mocap_calibration/calibration/calib_obj/tests/__init__.py,sha256=uRnW9EhgL6LthNaz0CVUVJtoM8HA-1DxLCHtdxVq8ng,722
16
+ mocap_calibration/calibration/calib_obj/tests/aruco_calib.py,sha256=J7O_cx07HNDYGHWI4zIU1bM0ZJ6ylTMOYE8pdf1mctU,722
17
+ mocap_calibration/calibration/calib_obj/tests/calib_football_court.py,sha256=oCUl7LH8OxFiLLB7wM5P_sQxLmC6iqw1SPNX6lcYDYo,722
18
+ mocap_calibration/calibration/calib_obj/tests/calibration_obj_test.py,sha256=Yv8432Nt81Ie9Bj4RJ9-NLlxI0zHnawgNEbQ4l6TTW0,723
19
+ mocap_calibration/calibration/calib_obj/tests/check_aruco_with_gt.py,sha256=TmVIGMQ9eBZjBSNHfIQ9pqov179s6N2htpFRH5st5Yw,722
20
+ mocap_calibration/calibration/calib_obj/tests/detect_lines.py,sha256=dlCrRmZ88r2oOrYbIUk5hRdtzUomQ7-1zsYV7LC-Fos,722
21
+ mocap_calibration/calibration/calib_obj/tests/manual_calibration.py,sha256=HCiTrSP_iJI1bdD5gRL-Ef-m2d3xxTpRRNfw-sZ6WEk,723
22
+ mocap_calibration/calibration/calib_obj/tests/solvePnP.py,sha256=3xC-abuypIurR2U35oEA335JgRF3zb5Oj-H4aDPnbOY,722
23
+ mocap_calibration/calibration/calib_obj/tests/vis_aruco_calib.py,sha256=k-iM3nXjpZC8GrSQbXtrki8PJ9b9yN3plOgj8A2vwO8,723
24
+ mocap_calibration/calibration/calib_obj/tests/vis_manual_calib.py,sha256=WOrSXxHRmfp5yE3QAmDnSZlXCWyMQkKFAK_1fkFNqsc,723
25
+ mocap_calibration/calibration/calib_obj/utils.py,sha256=-gKKAqp5plyFZAudgqQcMo92o05imz-TBMdA12OJo0g,722
26
+ mocap_calibration/calibration/cam_intrinsics/__init__.py,sha256=JdIf8_wbjdKeNBJ33VodpUXGi4IjoYuKOoyFBhI-CDM,723
27
+ mocap_calibration/calibration/cam_intrinsics/calc_intrinsics.py,sha256=o_g8zBLwhuflnx8gfK6pOxanRO7wMWe0FB_uTVdR81k,723
28
+ mocap_calibration/calibration/cam_intrinsics/calc_intrinsics_app.py,sha256=Ex29bir2ZMCtUHZcJSUlu-0WerasXS5zm_ntcR0jxMU,723
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=Boz4_HXnf-oo3MOwhU27h2L9YFChEhIEyU6lI1FcHaQ,723
32
+ mocap_calibration/calibration/cam_intrinsics/undistort_img.py,sha256=sb0obD-xGllkjHuZmXqhl1GxoAZaGJaJz8LkJUHKgBc,723
33
+ mocap_calibration/calibration/cam_intrinsics/undistort_video.py,sha256=-wQVuWgnPWGTST37EyUn1NlK6KTu-wLbWpgF2ggwtr0,723
34
+ mocap_calibration/calibration/cam_intrinsics/undistort_videos_from_json.py,sha256=awpnZsWI3O8HXVmIc_gR2oqHFTZQPE6o9PVL0GRk-wk,723
35
+ mocap_calibration/calibration/humanCalib/__init__.py,sha256=NxeP-i0VwNpiBZoNbw2hXUvDb_1mQuPOn6kHxjSR5fk,723
36
+ mocap_calibration/calibration/humanCalib/ba.py,sha256=6cuHLCqHd4doqTNA5jtmvkkJvERPy4ng2x7QujzmPmk,723
37
+ mocap_calibration/calibration/humanCalib/floor_plane.py,sha256=17PjthaKIjEQjdetrF3ABUBIlhkeeUp3gjSuVGL26Xk,723
38
+ mocap_calibration/calibration/humanCalib/human_calib.py,sha256=jfCtF7WGc4zMvA7geISNchLHGVPKq_5vsmkjosGHnX4,723
39
+ mocap_calibration/calibration/humanCalib/human_calib_pair.py,sha256=FsSsJUz0S3o0VXuXKkduzLmbolfakgPzFWolebKc9JE,723
40
+ mocap_calibration/calibration/humanCalib/ppl_calib_human.py,sha256=fe6GJ_5yh-lijlSEYtIOV71qdLnkDcxYJUz8JbIi7V8,723
41
+ mocap_calibration/calibration/humanCalib/quality.py,sha256=HGgaeX_-_VfO3FcjH7bRFl5873LCY0vhVlaBxhIonFA,723
42
+ mocap_calibration/calibration/humanCalib/report.py,sha256=xd1vmtYrUu4dSNxNjqX34GAZNJhCLxzeoVJbyaOx2Ho,723
43
+ mocap_calibration/calibration/humanCalib/utils/__init__.py,sha256=w-4qXE2XH-Vzx1VC41kA64yGn3HXGlGyHxsUFkaCLzI,723
44
+ mocap_calibration/calibration/humanCalib/utils/ba_utils.py,sha256=JvupB9yd8nURqk_qFafEdoju3dZDDZnrYZIdAhpVTpI,723
45
+ mocap_calibration/calibration/humanCalib/utils/calib_utils.py,sha256=BjbbnWzglFhcwiL-4d-YBBlL5fpxdUj8APHzpxLtra0,723
46
+ mocap_calibration/calibration/humanCalib/utils/filtering.py,sha256=HGaL8dwGSXkxzUaF_iIoLX_rVrcFt2MQ_ZOGPy7nOVU,723
47
+ mocap_calibration/calibration/humanCalib/utils/geometry_3d.py,sha256=rDRCDyjLqeDtu1meZI6xMVNHI2sc6Gv5C2gVXxbua_U,723
48
+ mocap_calibration/calibration/humanCalib/utils/refine_calib.py,sha256=F9qnYAunyjE6FA-cl93RFocEGslLPLiGz7ZRuj94FeY,723
49
+ mocap_calibration/calibration/interfaces/__init__.py,sha256=7uVlJ-R5yVYqk-0zTNICF-j3t1So8hLazj5UFHouOMg,722
50
+ mocap_calibration/calibration/interfaces/calib_template.py,sha256=aEX6fFEynZ9cxMdX2AQJ5VId2UOeCdF5-cl09f-NddU,722
51
+ mocap_calibration/calibration/interfaces/pair_calib_template.py,sha256=iWy4EQHqPsc1MMAw96dZ3oHWk_Ilft_jU8rRTDjZzP0,722
52
+ mocap_calibration/calibration/interfaces/structures.py,sha256=jraOtAyhl5PvFNFuVn9o3R0WkdevydwxPOHuUNY8lK4,722
53
+ mocap_calibration/calibration/tests/__init__.py,sha256=ycs35wPIRohWi_USD7w09Kk_EmDfbFMxfjX6NeUQPb4,723
54
+ mocap_calibration/calibration/tests/bias_analysis.py,sha256=I_uYVElbGYQOeWL12hazF4esQ-N_ewVTh3zSJuG-zfY,723
55
+ mocap_calibration/calibration/tests/calc_calib_bias.py,sha256=Zgh_xRKZXRVTZjhB1BjQSxUiOQzbfwP3gmtzEamwj6c,723
56
+ mocap_calibration/calibration/tests/calib_EA8K_json.py,sha256=kVPV7GWA-vclUz9bvs4phcDlHdgOBdoy0T5uQfjlVF8,723
57
+ mocap_calibration/calibration/tests/calib_covered_area.py,sha256=Mmcbz7oLAN7h-dC84yp_dVr2lJqVgpssS4pJJlT37Z0,723
58
+ mocap_calibration/calibration/tests/calib_from_json.py,sha256=tbetG9ryYChjn8yUDaoUbJaQQpKLSbZYh25984KD6_M,723
59
+ mocap_calibration/calibration/tests/calib_from_xml.py,sha256=8ZcvYpiI-Y81DOOiAq6vh2ju24YkANatJkdz_L29iXk,723
60
+ mocap_calibration/calibration/tests/calib_spectrum_json.py,sha256=e-3K2rQduHLnztTiaJ36azBpiBLsCqF0AWnDWvmtXT4,723
61
+ mocap_calibration/calibration/tests/main_calib_pair.py,sha256=G5qL2oZKq42JJIQi1k0sHXNabmU6ch9z8330Ypdc8lg,723
62
+ mocap_calibration/calibration/tests/main_check_calib.py,sha256=SMDwrIgNPuSKmUObcojMnjkcUS56mqlf3q6wMHKWIdU,723
63
+ mocap_calibration/calibration/tests/main_fast_calib.py,sha256=bJ8A97EZWSp9gXqvvqpxtV79aD9zJky97mQj1vaHO08,723
64
+ mocap_calibration/calibration/tests/main_floor_plane.py,sha256=_Q0R3nPUQfxMwUUYbX7WojRHt83FTN619wB5ky06rYc,723
65
+ mocap_calibration/calibration/tests/main_multi_calib.py,sha256=xKuABYkc4OiCb3Ihb6V5d7He6RvVyO4pECbQB9HQBAE,723
66
+ mocap_calibration/calibration/tests/main_recalib_with_homography.py,sha256=IpiABpMPgOvHIvYTtth2wlKuYyr9EiO5TV5tC14V2S4,723
67
+ mocap_calibration/calibration/tests/main_recalibrate.py,sha256=x3FXwhAiNSUgsCm744nMWcS9TvTVHxIiTFMY3KkLzcU,723
68
+ mocap_calibration/calibration/tests/main_report.py,sha256=tr0DOoE1ekSXal5oTfnKrDEelyqtR3LFeRogfTVWzCo,723
69
+ mocap_calibration/calibration/tests/main_vis_cameras.py,sha256=z1L3Y4B4kwPnbH69JNpMv0JxUbV6SCUT6C9KXX0pNSo,723
70
+ mocap_calibration/calibration/tests/pose_iphone.py,sha256=cVCGj3RcAiIieeba9ETY9jXdHdzdO-RrDtLcsRb7SLA,723
71
+ mocap_calibration/calibration/utils/__init__.py,sha256=u1Wv4uujjOKTuCdrYJ_TaE_spYbJL440OjBTMEE9BFc,721
72
+ mocap_calibration/calibration/utils/calib_from_metadata.py,sha256=_VYNFrYULBgdHoSIqFsRBJJuEn9EMpo71HpTCg2G7A4,721
73
+ mocap_calibration/calibration/utils/homography.py,sha256=Usfw87GEe1mlgg8ZUorIJ0Nnz3CQrAAmFcJI4Ck3y2I,722
74
+ mocap_calibration/calibration/utils/kalman_calib.py,sha256=iC2NM6sGVgMbdM6vFF6RN2VgGdQxdgzBp3-SAMb6ruU,721
75
+ mocap_calibration/operations/__init__.py,sha256=bIBtfyKnIwQ-mKz6xjMWM7NdqhG2xYtpVtzcx14naIA,723
76
+ mocap_calibration/operations/opsCalibrate.py,sha256=Q-7UmltI0ZfO0msaTJC70iVnIP2-N2QMUWANC2kMn-A,723
77
+ mocap_calibration/operations/opsCalibrateAruco.py,sha256=rra9f-vwkTOEXHz8ltzg4j3nZqUO0DkGGvjRnttBBGU,723
78
+ mocap_calibration/operations/opsCorrectCalib.py,sha256=8z18VYuVJ2Y6ZedgBAkdAhoaRkvEDZfoksYdWI96nCs,723
79
+ mocap_calibration/operations/opsReportCalib.py,sha256=XbYuR2_IMd-TRrBvHwjA9fvmcHB-83uRuUn7XoxNC1A,723
80
+ mocap_calibration/operations/opsVisualization.py,sha256=y0no8p8Qv9b969CWsMxxAWSYMs8tKJT6UR7v3kynyvY,723
81
+ mocap_calibration-2.10.2.dist-info/METADATA,sha256=rBQ5Bgi7nGY5BRugqsuPK8IicweBmmcBllzF9fys12Q,1067
82
+ mocap_calibration-2.10.2.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
83
+ mocap_calibration-2.10.2.dist-info/RECORD,,