Hello,
I translated the aruco code detection example to python and noticed I could not set a translation and orientation of a Pose with set_translation
and set_orientation
.
For example
test_pose = sl.Pose()
test_translation = Translation(1,2,3)
test_pose.set_translation(test_translation)
Looking at the library installed on my machine, I see that these functions have not been implemented.
set_translation
def set_translation(self, py_translation: Translation) -> None:
pass
Translation constructor
def init_vector(self, t1: float, t2: float, t3: float) -> None:
pass
Is this intended? If so, is there a recommended way to work with these types in Python?
I’m using ZED SDK 5.0 on Ubuntu 22.04 and on Orin AGX