Hi everyone. I’m doing a project where a UR10 with the help of an Intel RealSense Depth camera has to grab some objects stored on a shelf. So for the vision system I am using Python and also to communicate with the robot.
My difficulties at the moment are transforming the coordinates of the vision system to the robot’s base coordinate system. What I understood is that I must find the transformation matrix (4x4) and then multiply it by the matrix of the object’s coordinates in relation to the camera. So it is something like this (and please correct me if I’m wrong):
So my first question is: How to find the transformation matrix by using python? Can I obtain that by using a chessboard?
And my second question is how can I get the complete tcp pose [X, Y, Z, RX, RY, RZ]
I hope you can help me