Converting image pixel coordinates 2D(X, Y) to 3D world coordinate(Quaternion)
Hi there,
I want to obtain quaternion from x,y,z(depth camera) position. I am new to ros, and I am using Intel real sense.
Things Done:
- I have integrated yolov5 with ros, and I am obtaining the bounding boxes from that.
header: seq: 10 stamp: secs: 1608116230 nsecs: 742268562 frame_id: "detection" image_header: seq: 0
stamp: secs: 1608116230 nsecs: 742275953 frame_id: '' bounding_boxes: - probability: 0.378662109375 xmin: 626 ymin: 2 xmax: 640 ymax: 64 id: 0 Class: "teat"
- I am getting scaled point cloud.
Think I want to do:
I want to find the same location into the cloud point based on yolov5.
I want the output like this video:
https://www.youtube.com/watch?v=iJWHR...I want to obtain the detected object's quaternion so my robot arm can move to that particular location.
What approach I should follow?