Hi,
I have question regarding inverse kinematics computation. In my application I have some pre-recorded poses. I would like to compute inverse kinematics with some implemented heuristics (joint angles). I am now sending poses trough RTDE and in thread in real-time compute inverse kinematics thanks to get_inverse_kin()
.
What to do in the case when I want to compute inverse kinematics locally on my laptop using python? I know about ur_rtde library but this requires to have robot in remote which I am trying to avoid. I can think about just to compute it on the robot and send result to my laptop by following idea:
run loop into which I will send pose → compute inv kinematics → save into registers → read registers.
Does my idea makes sense ? Is there some better way how to compute inv. kinematics locally ? I do not want to reinvent the wheel tough.
Thanks