Some fixes. Updated benchmarks.

This commit is contained in:
Daniel
2024-09-17 18:23:41 +02:00
parent 8eba0ffa65
commit ba910e11e6
5 changed files with 330 additions and 328 deletions

View File

@ -26,7 +26,7 @@ def main():
print("")
# Load input data
roomparams = [[0, 0, 1.0], [4.8, 6.0, 2.0]]
roomparams = [[4.8, 6.0, 2.0], [0, 0, 1.0]]
joint_names = [
"nose",
"eye_left",
@ -70,7 +70,7 @@ def main():
print("")
# Load input data
roomparams = [[0, -0.5, 1.2], [5.6, 6.4, 2.4]]
roomparams = [[5.6, 6.4, 2.4], [0, -0.5, 1.2]]
cpath = "/SimplePoseTriangulation/data/p1/sample.json"
ppath = "/SimplePoseTriangulation/tests/poses_p1.json"
with open(cpath, "r") as file: