Skip to content

Commit

Permalink
Test script works with realsense capturer (except the data isn't corr…
Browse files Browse the repository at this point in the history
…ect because the algorithm hasn't been implemented yet)
  • Loading branch information
jackjansen committed Jan 30, 2024
1 parent 17669ff commit a8fd685
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cwipc_util
2 changes: 1 addition & 1 deletion sandbox/threedpointfinder.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def main():
if not ok:
print(f"serial {serial}: map2d3d failed")
continue
_, rv_x, rv_y, rv_z = struct.unpack("ffff", outargs)
rv_x, rv_y, rv_z = struct.unpack("fff", outargs)
print(f"serial {serial}: x={rv_x}, y={rv_y}, z={rv_z}")


Expand Down

0 comments on commit a8fd685

Please sign in to comment.