-
Notifications
You must be signed in to change notification settings - Fork 1
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
Apriltag measurement model #9
Conversation
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.
First pass
I think we should change the name of the sensor from Apriltag pose sensor to something else because this seems more generic than just an Apriltag pose sensor. I was thinking maybe Relative Pose sensor because we are using this to process pose measurements relative to some target frame. What do you think?
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.
Just a few more comments, but after this I think it looks good!
fuse_models/include/fuse_models/parameters/transform_sensor_params.hpp
Outdated
Show resolved
Hide resolved
/** | ||
* @brief Destructor | ||
*/ | ||
virtual ~TransformSensor() = default; |
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.
Is there a reason why the destructor is virtual? This sorta implies that it is okay to derive from this class?
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, I think it is. I'm not 100% sure, but this is common across every fuse sensor in the repo.
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.
LGTM 👍🏽
Adds an AprilTag measurement model and a tutorial using it. Also, tons of clang-tidy fixes for various source files I was looking at for reference.