-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wheeled Odometry Calibration Setup Examples #5244
Conversation
doc/t265.md
Outdated
``` | ||
### Extrinsic Calibration for Wheeled Odometry Examples | ||
|
||
- All calibration metrics are relative to T265 origin frame. I.e.: They are offsets/rotations *from* the T265 origin *to* the robot's origin. Said another way, we transform a point from frame B (Robot Odometry) to frame A (T265 Pose.) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
possibly even more clear by adding a formula, A_p = H_AB * B_p, where A_p is the point expressed in frame A, B_p is the point expressed in frame B, and H_AB is the corresponding homogeneous transformation (http://paulfurgale.info/news/2014/6/9/representing-robot-pose-the-good-the-bad-and-the-ugly)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This makes sense. So just to be clear...H_AB would effectively be the transformation matrix derived from the values in the JSON calibration file. Is that correct?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, @krazycoder2k
Looks good, thanks for the contribution, @krazycoder2k! |
@krazycoder2k, I squashed the commits and created this new PR: #5280. |
Thanks @schmidtp1 I'll add the math formula text you suggested to that PR now. |
Added basic wheeled odometry description / sample drawings/json to T265 documentation.